-
Notifications
You must be signed in to change notification settings - Fork 14
Add aux depth computation utilites #248
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
Conversation
mattalvarado
commented
Oct 1, 2025
- Update create_depth_image utility to create a depth image in the aux camera frame
- Add the ability to query the 3D depth for a single aux pixel
- Generalize the re-projection of disparity to 3D
|
|
||
| if (compute_in_aux_frame && !frame.calibration.aux) | ||
| { | ||
| return std::nullopt; |
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.
would it be better to throw here so the user knows what's happening? I'm guessing this would only happen for cameras without an aux imager?
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 wen't back and forth. We have a mechanism to say the output is invalid so I used that. I guess I could print a warning to the user