Search found 27 matches

by vinayan
Tue May 09, 2017 8:42 am
Forum: CloudCompare
Topic: Trace polyline Tool
Replies: 2
Views: 12661

Trace polyline Tool

hi Daniel,

I need the trace polyline tool activated from one of the actions in my plugin. Is this possible to call(I doubt this since this is on a MainWindow and I am not sure how to get a reference to Main Window from my plugin)? If not what should I look at for achieving this?
by vinayan
Tue Mar 21, 2017 11:24 am
Forum: CloudCompare
Topic: CCVector3 result from the ItemPicked signal
Replies: 1
Views: 10767

CCVector3 result from the ItemPicked signal

hi Daniel, I used this event to get the x,y,z location of a point that I picked on a point cloud. My assumption was this CCVector3 gives me the x,y and z location of the point closest to my picking location. But is it instead giving the location of the clicked position on the screen? SIGNAL(itemPick...
by vinayan
Wed Jan 25, 2017 5:09 am
Forum: CloudCompare
Topic: Hide points - option
Replies: 3
Views: 4676

Re: Hide points - option

that worked!! although I am yet to understand what will happen if i do not set unallocateVisibilityArray. Hopefully a scenario would popup as I use the plugin and help me solve the problem. Thank you.
by vinayan
Tue Jan 24, 2017 11:35 am
Forum: CloudCompare
Topic: Hide points - option
Replies: 3
Views: 4676

Hide points - option

hi Daniel, I am trying to hide a few points in my cloud. The user would select point on the cloud using mouse and that point should be invisible now. I have checked the ccGenericPointCloud and graphicalsegmentationTool source. It seems I can only hide once using the existing methods. If i want to hi...
by vinayan
Fri Dec 30, 2016 4:15 am
Forum: CloudCompare
Topic: leftButtonClicked signal not firing in plugin
Replies: 5
Views: 5549

Re: leftButtonClicked signal not firing in plugin

thank you! I will try this.
by vinayan
Thu Dec 29, 2016 9:34 am
Forum: CloudCompare
Topic: leftButtonClicked signal not firing in plugin
Replies: 5
Views: 5549

leftButtonClicked signal not firing in plugin

hi, I am trying to get the x and y screen points picked on the screen by user. I tried the below code for this. Same things are working fine in the SegmentationTool and similar tools in the core. I also tried setting the picking mode ccGLWindow::POINT_PICKING. Any idea where I am going wrong? ccGLWi...
by vinayan
Thu Nov 17, 2016 3:48 pm
Forum: CloudCompare
Topic: delete a point from ccPointCloud at index
Replies: 2
Views: 3725

Re: delete a point from ccPointCloud at index

yes i did think the color/normal/scalar indices could cause issues..anyway i will try if i can manage this through a function..
by vinayan
Wed Nov 16, 2016 7:32 am
Forum: CloudCompare
Topic: delete a point from ccPointCloud at index
Replies: 2
Views: 3725

delete a point from ccPointCloud at index

how do I delete a point at an index? . I checked the graphical segmentation tools source. There it uses cloud->getTheVisibilityArray() and sets invisible at the specified index. I am sure I am missing something here.
by vinayan
Mon Nov 14, 2016 11:21 am
Forum: Questions
Topic: Debugging when plugins are enabled
Replies: 7
Views: 3579

Re: Debugging when plugins are enabled

I got it to work in debug mode by doing the below change in CMakePluginTpl.cmake. Commented out the QT_NO_DEBUG My knowledge of CMake system is below basic so I dont know what this is even doing ;) Now I can run the application from install location and then use QTCreator's "attach to running a...
by vinayan
Mon Nov 14, 2016 7:51 am
Forum: CloudCompare
Topic: global scale and shift
Replies: 7
Views: 5125

Re: global scale and shift

hi Daniel..this is working from the plugin. Seems like there is no dll boundary issues. Please review the pull request. Thank you again!