-
Notifications
You must be signed in to change notification settings - Fork 67
feat: enable interactive calibrator to specify file intrinsics/extrinsics on runtime #271
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
Merged
paulsohn
merged 20 commits into
tier4/universe
from
feat/interactive-calib-runtime-intrinsics-extrinsics
Dec 2, 2025
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
119bb21
remove duplicate and unused image_view.py
paulsohn 1d24fa7
add current tf display (contains TEMP)
paulsohn 3a639e4
change calibration output format to yaml (contains TEMP)
paulsohn 0b00448
generalize transform postprocess (resolve TEMPs)
paulsohn 84a2c4a
Add "open file" TF source
paulsohn 37fe893
Add "open file" camera info source
paulsohn 958d393
spells and text displays
paulsohn 5201af8
support .json inputs and validations
paulsohn 4df5595
add log on optimized camera info obtained
paulsohn 1e1e5b8
Update sensor_calibration_manager/launch/xx1/tag_based_pnp_calibrator…
shmpwk 615356a
remove duplicated lidar_frame
shmpwk ab97e01
Update calibrators/interactive_camera_lidar_calibrator/interactive_ca…
paulsohn d4768f2
Update calibrators/interactive_camera_lidar_calibrator/interactive_ca…
paulsohn ad488bc
Update common/tier4_calibration_views/tier4_calibration_views/image_v…
paulsohn 82aa246
update K matrix printing format
paulsohn 260cdfa
pre-commit
paulsohn 0143b67
explicit keyerror instead of silent identity matrix
paulsohn 2ac84a0
add explicit camera_name ros parameter
paulsohn 6e7ffd1
remove unnecessary f-string
paulsohn 15f6343
enhance file load failure debugging
paulsohn 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
862 changes: 0 additions & 862 deletions
862
...ors/interactive_camera_lidar_calibrator/interactive_camera_lidar_calibrator/image_view.py
This file was deleted.
Oops, something went wrong.
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
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
Oops, something went wrong.
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.
Unused variable
use_rpy. This variable is set toTrueon line 409 but never changes. The code structure suggests it was intended to allow switching between rpy and quaternion output formats, but currently only the rpy path is active. Consider either removing this variable and the unused quaternion code (lines 421-426), or implementing the switching logic if both formats are needed.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.
Indeed the branching is currently unused, but I want to leave future option to choose either rpy or quaternion.