-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
How to align confidence matrix from L515 with RGB image? #8655
Comments
I may have found a solution, but unsure of its accuracy. This is edited from align.cpp
aligned_confidence array now hold the confidence frame that is aligned with the camera frame. |
Hi @erjiekai Regarding the L515 camera, you're right there is no function call to align confidence with RGB. Information to note is that the IR stream and confidence stream are perfectly aligned with the depth stream. So using depth to color alignment then mapping to confidence stream is possible but again not specific function to do that. You seem to have been able to do this alignment with your code above. I was going to say and you've done it is use the align example as baseline then map from there. |
Hi @RealSenseSupport , Thank you for your response. Glad to know that I am doing it correctly. |
Do you need anything else on this ticket? If we don’t hear from you in 7 days, this issue will be closed. |
No. Thank you for your help. |
Hi, how do you save and display the depth map and color image seen in RealSense Viewer as images? I can use C++ or matlab to program. Thank you. |
Issue Description
How to align confidence matrix from L515 with RGB image?
I can align my depth image (depth frame) to RGB image (camera frame) as follows:
But my confidence frame is not aligned!
Is there a simple function call to align them (confidence frame to camera frame)?
The text was updated successfully, but these errors were encountered: