-
Notifications
You must be signed in to change notification settings - Fork 1.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
K from camera_info #2935
Comments
What further confuses me, is when I use the following topic, I get a different K
so what is cam_K.txt as in BundleSDF refer to? https://github.com/NVlabs/BundleSDF |
assuming I should use color camera info (why not depth?),
for cam_K.txt file? |
I may be wrong but seems using
works for BundleSDF |
Hi @monajalal RealSense cameras are calibrated in the factory during the manufacturing process. So they may not need to be re-calibrated unless something happens to mis-calibrate the sensors, such as a hard knock or a drop on the ground. You can use the RealSense SDK's rs-enumerate-devices tool to find out the calibration values for your particular camera. This can be done by launching the tool in calibration mode with the -c parameter.
The calibration values are unique for each individual RealSense cameras and will also differ for each resolution. Shown below is the calibration information from rs-enumerate-devices for my own D435 at resolutions 848x480 and 1280x720. You will see that the D435's five distortion coefficients are all zero. This is because RealSense artifically sets them all to 0 for reasons provided by a RealSense team member at IntelRealSense/librealsense#1430 (comment) RealSense refers to CX and CY (the Principal Point) as PPX and PPY. The distortion model plumb_bob is an alternative name for the Brown-Conrady distortion model used by RealSense. |
Should I assume the following K from D435 is already calibrated and correct? also could you please provide the format?
K: [385.240478515625, 0.0, 319.2182922363281, 0.0, 385.240478515625, 236.77352905273438, 0.0, 0.0, 1.0]
like what is order of f_x, f_fy, c_x, c_y, etc
I am trying to convert my K to the following format but I am not sure what is the order of f_x, f_y, c_x, and c_y in either one.
thanks for any help.
The text was updated successfully, but these errors were encountered: