camera_calibration
camera_calibration copied to clipboard
Explain camera parameters
Hi, Can you explain which parameters are (distortion parameters) and which are (intrinsic parameters), such that in Pinhole parameters, there are up to 8 distortion parameters, and 2 focal lengths, and 2 optical centers parameters.?
And then what is the equations needed to un-distort the images, and how to project and un-project using un-distorted images (without distortion parameters)?
Which camera model does this question refer to?
both central generic model and noncentral generic model
I think that the parameters in these models cannot be classified as distortion or intrinsic parameters as in traditional camera models. The parameters in the generic models simply specify the observation directions or lines corresponding to some pixels of the camera.
I wrote down the un-distortion algorithm in this issue (only applicable to the central generic model): #22 After un-distortion, the projection and un-projection is done with the camera model that was chosen as un-distortion target (typically the pinhole camera model without distortion), which is independent from the original camera model. So, if the pinhole model is used, then projection and un-projection on the un-distorted image would directly use the traditional pinhole model's equations for that.