Kitti
Understanding the Calibration file
This file basically contains all the transform between between different frames of camera such as velodyne, camera, etc.
Use following links to understand it:
Main equation for transformation
In the calib.txt
file, the matrices are the projection matrix which project the 3D point in rectified camera coordinate frame to image coordinates of camera . Please note that rectified camera coordinate frame is not related to any camera . So basically these given in calib.txt are actually and takes points in rectifies camera coordinate and not points in camera coordinate frames.
This is one of the main equation given in the readme.md file for transformations of points. Here is 3D point in velodyne coordinate frame. transform an point from velodyne to reference camera (cam0) coordinate frame. ie. . is in cam0 coordinate frame, cam0 is reference camera in kitti.
We need in rectified frame to be worked with . Hence we use which transform point from cam0 coordinate frame to rectified coordinate frame.
Different Packages for using Kitti Dataset
Python Package to read Kitti data.
Covert Kitti dataset to ROS Bag or Publish as ROS topics.
Last updated