Camera Calibration
Last updated
Last updated
1) Calibrate camera using camera_calibration package http://wiki.ros.org/camera_calibration
Calibration: Cameras must be calibrated in order to relate the images they produce to the three-dimensional world. The camera_calibration package provides tools to calibrate monocular and stereo cameras in your ROS system. A CameraInfo wiki page provides a detailed description of the parameters used by the pipeline.
Intrinsic Calibration of single Cameras gives us the Camera Matrix which contains information on how to undistort warping in camera lenses.
2) Stereo Calibration using camera_calibration package
If you intend on using two front facing cameras to perform stereo vision to obtain depth information, you need to perform stereo calibration to obtain the transform between two cameras. This is known as extrinsic calibration. This can also be done using camera_calibration package in ROS.
For more info: