[features] Add isNormalFinite check in ShapeContext3DEstimation#4883
Merged
kunaltyagi merged 2 commits intoPointCloudLibrary:masterfrom Aug 10, 2021
Merged
[features] Add isNormalFinite check in ShapeContext3DEstimation#4883kunaltyagi merged 2 commits intoPointCloudLibrary:masterfrom
isNormalFinite check in ShapeContext3DEstimation#4883kunaltyagi merged 2 commits intoPointCloudLibrary:masterfrom
Conversation
If any normal component is e.g. nan, the assertion later in the code would trigger. As a minor side-edit, the rf parameter is an output (it is not read from, but written to).
larshg
reviewed
Aug 8, 2021
kunaltyagi
approved these changes
Aug 9, 2021
isNormalFinite check in ShapeContext3DEstimation
Contributor
|
Should we emit a warning about the normals containing NaN? |
Member
Author
I'm not sure if a warning is appropriate or if it is too intrusive. I think it is not too uncommon that estimated normals contain NaNs, especially in sparse regions. |
larshg
approved these changes
Aug 9, 2021
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
If any normal component is e.g. nan, the assertion later in the code would trigger.
As a minor side-edit, the rf parameter is an output (it is not read from, but written to).
Fixes #4497 . Contrary to what I commented in the issue, the assert would not trigger if the normal was
(0, 0, 0)because the left part,x_axis[0]*normal[0] + x_axis[1]*normal[1] + x_axis[2]*normal[2]would also be zero, which would make the assert pass.