Skip to content

thabsheerjm/AutoCalib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AutoCalib - Zhang's Camera Calibration

Camera Calibration : Estimating the parameters of a camera including focal length, distortion coefficients, and principle point.

Method

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].

Results

Original

How to Run

python3 wrapper.py

Acknowledgement

This is an assignment done towards completion of RBE549 (Computer vision)[2]

Reference

[1] A Flexible New Technique for Camera Calibration
[2] RBE59-HW1

About

Zhang's Camera Calibration implemented in Python

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages