Open
Conversation
…ler velocity extraction)
There was a problem hiding this comment.
Pull request overview
This PR replaces the inline Doppler extraction functionality with an external spinning_radar_doppler submodule and adds a new Doppler-based odometry module.
Changes:
- Integrated the
spinning_radar_dopplersubmodule to handle Doppler velocity extraction - Added a new
OdometryDopplerModulefor direct Doppler-based odometry estimation - Removed inline implementations of Doppler processing functions in favor of the submodule's API
Reviewed changes
Copilot reviewed 15 out of 15 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| .gitmodules | Added submodule reference for spinning-radar-doppler |
| main/src/deps/spinning-radar-doppler | New submodule commit reference |
| main/src/vtr_radar/package.xml | Added spinning_radar_doppler dependency |
| main/src/vtr_radar/CMakeLists.txt | Added spinning_radar_doppler package dependency |
| main/src/vtr_radar_lidar/CMakeLists.txt | Added spinning_radar_doppler package dependency |
| main/src/vtr_radar/include/vtr_radar/cache.hpp | Replaced local DopplerScan type with srd::DopplerScan from submodule |
| main/src/vtr_radar/include/vtr_radar/data_types/azimuth.hpp | Removed local Azimuth struct definition (now provided by submodule) |
| main/src/vtr_radar/include/vtr_radar/modules/preprocessing/extraction/doppler_extraction_module.hpp | Updated configuration parameters and removed unused fields |
| main/src/vtr_radar/src/modules/preprocessing/extraction/doppler_extraction_module.cpp | Replaced inline Doppler extraction logic with calls to submodule API |
| main/src/vtr_radar/src/pipeline.cpp | Added prior velocity initialization for Doppler extraction |
| main/src/vtr_radar/include/vtr_radar/modules/modules.hpp | Added odometry_doppler_module.hpp include |
| main/src/vtr_radar/include/vtr_radar/modules/odometry/odometry_doppler_module.hpp | New Doppler-based odometry module header |
| main/src/vtr_radar/src/modules/odometry/odometry_doppler_module.cpp | New Doppler-based odometry module implementation |
| main/src/vtr_radar/src/modules/odometry/odometry_icp_module.cpp | Fixed variable name check and added OpenMP parallelization |
| main/src/vtr_lidar/src/modules/odometry/odometry_icp_module.cpp | Fixed incorrect log category from radar to lidar |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
main/src/vtr_radar/src/modules/odometry/odometry_doppler_module.cpp
Outdated
Show resolved
Hide resolved
main/src/vtr_radar/include/vtr_radar/modules/odometry/odometry_doppler_module.hpp
Outdated
Show resolved
Hide resolved
…e.cpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…_doppler_module.hpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
a-krawciw
requested changes
Feb 22, 2026
Contributor
a-krawciw
left a comment
There was a problem hiding this comment.
I think it's close but cleaning up the dependencies should make it easier to manage.
main/src/vtr_radar/src/modules/preprocessing/extraction/doppler_extraction_module.cpp
Show resolved
Hide resolved
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.
Swapped over the using the stand-alone spinning radar Doppler submodule instead of copying functionality within VTR functions. Additionally added a Doppler-based odometry module using this submodule.