Camera Calibration : Estimating the parameters of a camera including focal length, distortion coefficients, and principle point.
In this assignment, an automatic calibration method presented by Zhengyou Zhang[1] of Microsoft is implemented. The goal is estimate the the parameters fx, fy, cx, cy, k1, k2, where k1 and k2 are the radial distortion parameters and the camera calibration matrix (K) is given below:
K = [[fx, 0, cx],
[ 0, fy,cy],
[ 0, 0, 1]]
The method relies on a calibration target (a checkerboard) to estimate the intrinsic parameters. The steps implemented is described at [2].
python3 wrapper.py
This is an assignment done towards completion of RBE549 (Computer vision)[2]
[1] A Flexible New Technique for Camera
Calibration
[2] RBE59-HW1