I have to perform re-projection of my 3D points (I already have data from Bundler).
I am using Camera Calibration toolbox in MATLAB to get the intrinsic camera parameters. I got output like this from 27 images (chess board; images are taken from different angles).
Calibration results after optimization (with uncertainties):
Focal Length: fc = [ 2104.11696 2101.75357 ] ± [ 23.13283 22.92478 ]
Principal point: cc = [ 969.15779 771.30555 ] ± [ 21.98972 15.25166 ]
Skew: alpha_c = [ 0.00000 ] ± [ 0.00000 ]
Distortion: kc = [ 0.11555 -0.55754 -0.00100 -0.00275 0.00000 ] ±
[ >0.05036 0.59076 0.00307 0.00440 0.00000 ]
Pixel error: err = [ 0.71656 0.63306 ]
Note: The numerical errors are approximately three times the standard deviations (for reference).
I am wondering about the numerical errors i.e. Focal length error +- [23.13283 22.92478] , principal point error etc. What these error numbers actually represent and what are their impact??
The pixel error is really less.
So far I use the following matrix from above data for my re-projection:
K=[ 2104.11696 0 969.15779; 0 2101.75357 771.30555;0 0 1]
The above matrix "K" seems right to me. Correct me if I am doing something wrong...
Will be waiting for your replies.