Search found 7433 matches

by daniel
Wed Mar 14, 2012 1:53 pm
Forum: Questions
Topic: Point Clouds Comparison
Replies: 8
Views: 11843

Re: Point Clouds Comparison

Indeed, the extent of the plane must be larger than the cloud's one. In this comparison mode, CloudCompare only considers the triangles that compose the "plane" (the plane here is a triangular mesh, as any other CloudCompare meh). Then it computes the distance from every point to the neare...
by daniel
Wed Mar 14, 2012 8:23 am
Forum: Questions
Topic: Point Clouds Comparison
Replies: 8
Views: 11843

Re: Point Clouds Comparison

The main difference here is scale. In the cloud-to-cloud distance with local modeling, small LS planes are computed locally around each point (in a very small neighborhood, which size is controlled by a hidden parameter). Therefore, they are much more prone to local noise and their orientations may ...
by daniel
Fri Mar 09, 2012 11:18 am
Forum: Questions
Topic: On accessibility of CC by plugins, and other questions
Replies: 2
Views: 3205

Re: On accessibility of CC by plugins, and other questions

Hello Luca, 1. For standard plugins, there's a 'uiModificationFlags' as output variable (second parameter of 'doAction'). You can set the 'CC_PLUGIN_REFRESH_ENTITY_BROWSER' bit flag to make CC do what you want on plugin completion. uiModificationFlags |= CC_PLUGIN_REFRESH_ENTITY_BROWSER; Look to qPo...
by daniel
Tue Feb 21, 2012 9:28 pm
Forum: Issues, bugs, etc.
Topic: Linking errors when building in Debug
Replies: 1
Views: 3218

Re: Linking errors when building in Debug

No you're right! By starting from a clean version freshly downloaded from the SVN server, I reproduced the error (with an older version of Qt). I don't know yet how I managed to get a working version until know, but for the moment I remove the 'Multi-thread' support in debug mode (it works fine in r...
by daniel
Tue Feb 14, 2012 9:53 am
Forum: Questions
Topic: ALS Registration
Replies: 6
Views: 6230

Re: ALS Registration

Ok, it's available in the last version (02/14/2012).
by daniel
Tue Feb 14, 2012 9:49 am
Forum: Questions
Topic: PCL library and binary format
Replies: 11
Views: 39173

Re: PCL library and binary format

Great work! As soon as you tell me, I'll add the plugin to the main trunk (or even better, I'll let yourself push it in with a personalized account - so you'll be able to do some maintenance ;). It will be also easier for me to do minor corrections (if necessary). For CMake, let's wait a little bit ...
by daniel
Fri Feb 10, 2012 9:12 am
Forum: Coffee place
Topic: CloudCompare standalone viewer
Replies: 3
Views: 27706

Re: CloudCompare standalone viewer

Indeed, this is still in the "TODO" list. It shouldn't be very hard to do, the only thing that will need some time is to define precisely what should be handled by this new format (clouds and/or meshes? options such as points size, even maybe the camera settings? etc.). There will be two v...
by daniel
Wed Feb 08, 2012 9:21 pm
Forum: Questions
Topic: PCL library and binary format
Replies: 11
Views: 39173

Re: PCL library and binary format

Hello, LAS file is typically the example of what shouldn't be done in CC ;). It's quite a hassle to compile liblas (because of the boost dependency mainly) and we should definitely have opted for a purely plugin-based solution at that time (instead of putting it directly in the main CC executable as...
by daniel
Tue Feb 07, 2012 7:33 pm
Forum: Questions
Topic: Cloud differencing/binning to voxels
Replies: 2
Views: 5210

Re: Cloud differencing/binning to voxels

Hi, the manuscript of my PhD (in french) is here: http://pastel.paristech.org/bib/archive/00001745 . There's an article in english that gives a good insight of what CloudCompare can do (and how): http://www.danielgm.net/phd/isprs_laserscanning_2005_dgm.pdf . And to answer your question: CloudCompare...
by daniel
Mon Feb 06, 2012 9:25 am
Forum: Questions
Topic: PCL library and binary format
Replies: 11
Views: 39173

Re: PCL library and binary format

Indeed the plugin seems to be the best solution. I have a few remarks: - plugins in CC are totally independent. By design, they can't have any influence on the application. So for instance a plugin can't change the behavior of the file chooser. However, a plugin can spawn its own file loading dialog...