-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix for #1413 #1415
Fix for #1413 #1415
Conversation
Changes to
Can you please explain the problem with covariance variant of the VoxelGrid? |
Makes sense. I'll make changes to limit the operations to the coordinates.
For the normal VoxelGrid a temporary Eigen vector was being created on In VoxelGrid covariance, each voxel leaf has its own |
Ok, makes sense to keep it this way. Could you adapt the code to PCL style guide (i.e. spaces before braces everywhere)? And squash. |
I'll address the changes. More importantly, I noticed the new test I wrote, trying out the downsamplealldata as false is segfaulting! I ran the test before committing, therefore I'm not sure if I'm able to reproduce this on my development environment. Can you give it a try? Edit: I suspect it is something with my use of |
Hi, I get segfault as well, here is backtrace. Unfortunately I don't have cycles to investigate further.
|
8650745
to
46a351e
Compare
Interesting. That issue is unrelated to the changes I did, but the new test triggered the problem. |
713fa12
to
470e176
Compare
It should be good for merging now. The only test failing is |
Sorry for being picky, but please add spaces on lines 412 and 415 in |
Addresses PointCloudLibrary#1413 , based on PointCloudLibrary#1170, modified to make use of PointCloudLibrary#586. Includes extra tests for RGBA and for testing downsamplealldata=false
470e176
to
bb057d4
Compare
No worries ;) Should be ok now. |
Addresses #1413 , based on #1170, modified to make use of #586.
No elegant way to modify
pcl::VoxelGridCovariance
at this stage.