I am using Kinect V2 to capture the 3D point cloud and its corresponding color image. In order to get a proper projection of some 3D model into this color image, I need to compute valid projection matrix from camera to image space.Since Kinect V2 SDK has no calibration information about RGB camera, I had found that there is a method called MapCameraPointsToColorSpace in coordinateMapper class.
This method returns a Lookup table which contains correspondence between each 3D points in the cloud and image pixels. From the table, I had tried to compute the RGB camera intrinsic matrix(focal length, principal points, image spacing factors). But there are some errors between the 2D points projected by using computed intrinsic matrix and the values in the Lookup table. I think that this error occurs because I didn`t count the radial distortion. Am I right? should I care about radial distortion to get the exact mapping between 3D to 2D color points through this Lookup table?