-
Notifications
You must be signed in to change notification settings - Fork 675
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
Prune Operation Unexpected Results #249
Comments
That depends, in general one should be careful when comparing floats. The pruning, however, mostly works on nodes on the clamping thresholds so they actually contain the exact same values. So in the case here I don't think it's a real problem. Is there an actual issue you're experiencing? |
I also thought the other intent behind prune is to reduce memory consumption. If all of the nodes children contain the same float value and with the current implementation it will not be collapsed taking up space. Also throughout the code base you see things like what is shown below which does not work as expect when using floats.
Also this is very useful when leveraging octomaps for collision checking because if the prune actually collapsed nodes you would end up with few collision shapes because then it can be represented by a larger box. This is very useful for convex optimization, which would provide better results when the environment is represented by larger convex shapes along with the performance increase due to few collision shapes. |
The main intent of pruning is, of course, to reduce the memory consumption. What I meant is that mostly the nodes in the clamping thresholds are affected by pruning. And they are set to exactly the same float value, so the exact float comparison works just as well.
What would be the specific behavior you'd expect from the code you mentioned, and what behavior did you get? If you still have doubts, it might be worth a try to adjust the code to your needs and see if it changes anything. |
I understand, below is the code I am currently using. I would have expected it to produce the same results as the previous two code examples. I would have expect that if all of the children were above the threshold they would be set to the same double value and then calling prune would produce the same results as the code below but it does not.
|
Hi all I'm having trouble understanding how prune should work. this is my code: however the map size (and what it looks like in octovis) stays the same |
@jameskiki If you try the code snippet above does it produce the results you expect? |
Currently the octomap::OcTree prune operation leverages the compare operator on the OcTreeNode to determine if they contain the same value. This checks if two floats are equal here. The OcTreeNode uses template type float which using the 'a==b' for floats is not good, should this be changed such that the class implementing the Node must implement an equal operator for this node type?
The text was updated successfully, but these errors were encountered: