-
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
Depth Cam Intrinsics/Extrinsics #8389
Comments
Hi @macrohuang1993 If you need to align the depth of a D415 to the RGB of a non-RealSense external camera, my research identified a couple of possible approaches from past cases of aligning RealSense with non-RealSense.
In regard to your questions:
The left infrared sensor is perfectly aligned to the depth map. So K_ir should be the same as K_depth. Intel's Tuning depth cameras for best performance guide provides the following information: The "LEFT IR" camera has the benefit of always 1. Being pixel-perfect aligned, calibrated, and overlapped with the depth map, 2. Perfectly time-synchronized, 3. Requires no additional computational overhead to align color-to-depth, and 4. Gives no additional occlusion artifacts, because it is exactly co-aligned. |
This is very helpful, thank you very much! |
Issue Description
I would like to capture depth map using D415 and then align the depth map to my own RGB cam (not the RGB cam on D415). To do that, I need to know the relative translation T /rotation R between the "depth camera", which generates the depth map, and my own RGB cam. I will also need to know the intrinsic camera matrices for RGB camera, K_rgb and for "depth camera", K_depth.
What I am thinking about is first doing the instrinc camera calibration on left-ir imager/my own RGB cam to get the intrinsic camera matrices, K_ir and K_rgb. Then do stereo calibration between left-ir imager and my own RGB cam to get the relative translation T' /rotation R' between the left-ir imager and my own RGB cam.
My question is: is it safe to assume:
1. R', T' is same as R, T? I am not sure because maybe D415 did stereo matching on rectified stereo pairs? In that case, I think they can be different.
2 .K_ir is same as K_depth?
Any input would be appreciated!
The text was updated successfully, but these errors were encountered: