Search found 8 matches
- Wed Jul 03, 2013 9:57 am
- Forum: Questions
- Topic: Batch synchronize process
- Replies: 11
- Views: 10178
Re: Batch synchronize process
Finally I used hDlg->exec(); to keep opened the histogram window. I'm looking a way to delete points out of a custom defined box (from center). What method can I use to directly remove a point of my cloudPoint object ? CCVector3 P; dataCloudcut->getPoint(i,P); float dx = std::abs(P.x - C.x); float d...
- Sat Jun 15, 2013 9:19 am
- Forum: Questions
- Topic: Batch synchronize process
- Replies: 11
- Views: 10178
Re: Batch synchronize process
Ok, I had to put the enable flag to the point cloud before to sabe it: compCloud->setEnabled(true); compCloud->setVisible(true); Now, I can automatically register, compute distances and get the associated histogram data. I would like to show the histogram plot as the last task. Now, I'm showing the ...
- Wed Jun 12, 2013 3:26 pm
- Forum: Questions
- Topic: Batch synchronize process
- Replies: 11
- Views: 10178
Re: Batch synchronize process
Ok, I will try later to disable the further points from the SF. Maybe, a partial solution could be to conserve only the points of the more dense point cloud where the normal has a nearly associated normal (overlapping point) at the less dense point cloud. So, the extended zones could automatically b...
- Wed Jun 12, 2013 8:42 am
- Forum: Questions
- Topic: Batch synchronize process
- Replies: 11
- Views: 10178
Re: Batch synchronize process
OK, now synchronize goes fine. Thanks ! I attach a snapshot of the two aligned point clouds (with a previous segmentation task). As you can see , the blue point cloud has a more reduced box that the brown point cloud. So, it is a problem when I do the compute distances because I would like to comput...
- Tue Jun 11, 2013 8:35 pm
- Forum: Questions
- Topic: Batch synchronize process
- Replies: 11
- Views: 10178
Re: Batch synchronize process
>> I'm not sure... first, I'll start with general considerations: >>• you should test that the 'filterChildren' has actually output at least one mesh (either test the number of found items returned by the method itself, or the size of the meshes1 and meshes2 vectors). >>• you should use the CC_GENER...
- Tue Jun 11, 2013 11:17 am
- Forum: Questions
- Topic: Batch synchronize process
- Replies: 11
- Views: 10178
Batch synchronize process
Hi Daniel, I did a batch process to register(ICP) and compute distance for two meses (I extract the associated cloud point to do the tasks). I'm getting different alignment results depending the role that I use to choose cloud model or cloud data (I try to put the cloud with more number point as mod...
- Tue May 14, 2013 6:09 pm
- Forum: Questions
- Topic: Batch process for registration and differences
- Replies: 3
- Views: 4617
Re: Batch process for registration and differences
Ok, I will try add new functionality to commandLineParse. I have two questions: 1. When I try to depure the solution from VS 2010 I get this message: "Can not start the application: c:\cloudbuild\qCC\x64\Debug\ALL_BUILD The system can not find the file specified 2. Doing: cloudcompare.exe -O &q...
- Tue May 14, 2013 10:34 am
- Forum: Questions
- Topic: Batch process for registration and differences
- Replies: 3
- Views: 4617
Batch process for registration and differences
Hello Daniel, My objective is create a batch process to do a registration and difference computation in an unattented mode (without graphic components). I see two options: 1. Directly access to the CC libraries Project from my Visual Studio 2010 Project. 2. Use commandline to call the registration a...