-
Notifications
You must be signed in to change notification settings - Fork 668
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
feat(pointcloud_preprocessor): update azimuth and distance in distortion_correction_node #5560
Closed
vividf
wants to merge
22
commits into
autowarefoundation:main
from
vividf:feat/distortion_correction_node_update_azimuth_and_distance
Closed
Changes from 13 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
08d9e45
distortion node is able to update azimuth and distance value based on…
vividf 404e59a
wrong opencv head file
vividf 6a1c6da
update the distortion node docs
vividf c99dbb7
update the distortion node docs
vividf 598bd42
fix if else condition to update value even in sensor frame
vividf 447a71d
update readme for distortion node
vividf ab81c47
style(pre-commit): autofix
pre-commit-ci[bot] 1ed9e29
Update distortion-corrector.md
vividf 8502d89
remove parameter default value
vividf 2058788
remove get_parameter
vividf dffbd56
style(pre-commit): autofix
pre-commit-ci[bot] d779a36
Update distortion-corrector.md
vividf e2b9526
style(pre-commit): autofix
pre-commit-ci[bot] 78dde17
Update distortion-corrector.md
vividf ef03a19
style(pre-commit): autofix
pre-commit-ci[bot] 4929958
Update distortion-corrector.md
vividf a7ccf4a
Merge branch 'autowarefoundation:main' into feat/distortion_correctio…
vividf 686ec6a
Merge branch 'autowarefoundation:main' into feat/distortion_correctio…
vividf 7b51d4f
Merge branch 'autowarefoundation:main' into feat/distortion_correctio…
vividf 192a89d
Merge branch 'autowarefoundation:main' into feat/distortion_correctio…
vividf fb2ab65
Merge branch 'autowarefoundation:main' into feat/distortion_correctio…
vividf 55682dd
modify ring outlier filter node for supporting counter clockwise azimuth
vividf File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vividf
As fastAtan2 function description, the accuracy is 0.3 deg which greater than VLS128 azimuth resolution (~0.2deg) so do you think some beams' order in a ring might be changed?
Anyway, IMO, even it's happened, it changes only 1 beam so it will not affect other filters result, such as Dual_return_filter which uses rertified topic as input. @miursh @drwnz Do you have any concern about this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it should be fine for now - if we run into issues we could optionally use a custom look up table implementation or use a method which has higher accuracy (at higher computational cost) but as you mention, I doubt that this will cause any problems for the modules which actually use azimuth.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@drwnz
I agree that it's acceptable to use fastAtan2 for now.
@vividf I think it is better to add the reference about fastAtan accuracy and a warning about posibility of changing beam order for high azimuth resolution LiDAR in filter README?