Skip to content

Camera intrinsic parameters calibration from chessboard video sequence.

License

Notifications You must be signed in to change notification settings

necator9/video2calibration

 
 

Repository files navigation

Camera Calibration Using OpenCV

Python scripts for camera intrinsic parameters calibration and image undistortion.

It finds following parameters:

  • focal length
  • principal point
  • radial distortion coefficients

using video of a moving chessboard pattern or a sequence of images as an input.

Example input:

input video

Example output YAML file:

base_res:
- 1280
- 720
camera_matrix:
- - 762.0943408642049
  - 0.0
  - 617.7109407275938
- - 0.0
  - 760.1868142954443
  - 353.1858794554058
- - 0.0
  - 0.0
  - 1.0
dist_coefs:
- - -0.35657622451004173
  - 0.15948878855302165
  - -0.0027996970536529678
  - 0.0005069043355896453
  - -0.03837920203383229
rms: 0.970909312850425

Installation

Requirements:

  • numpy
  • PyYAML
  • OpenCV 3

Using pip the numpy and PyYAML can be installed as follows:

$ pip install -r requirements.txt

Download and install OpenCV 3.0 or newer. The python bindings have to be installed. If the OpenCV is not installed in the system, the python sys.path has to be set to point to cv2.so or cv2.pyd. It can be achieved by setting PYTHONPATH environment variable.

Camera Calibration

  1. print the pattern.png and glue it to a solid board
  2. fix the camera lens zoom, the calibration values change with the lens zoom changes
  3. record a video with the pattern moving in front of the camera
    • the pattern should be most of the time completely visible
    • try to move the pattern to cover all parts of the camera view, pay attention to the corners
    • the length of the video should be 1 or 2 minutes
  4. run the calibration.py to extract chessboard pattern corners from the video and perform camera calibration

Example usage (you can actually run the example, the input data is present in the ./example_input):

$ ./calibrate.py --help
usage: calibrate.py [-h] [--debug-dir DEBUG_DIR] [-c CORNERS] [-fs FRAMESTEP]
                    input out

Calibrate camera using a video of a chessboard or a sequence of images.

positional arguments:
  input                 input video file or glob mask
  out                   output calibration yaml file

optional arguments:
  -h, --help            show this help message and exit
  --debug-dir DEBUG_DIR
                        path to directory where images with detected
                        chessboard will be written
  -c CORNERS, --corners CORNERS
                        output corners file
  -fs FRAMESTEP, --framestep FRAMESTEP
                        use every nth frame in the video


$ mkdir out
$ ./calibrate.py example_input/chessboard.avi calibration.yaml --debug-dir out
Searching for chessboard in frame 0... not found
Searching for chessboard in frame 20... not found
Searching for chessboard in frame 40... not found
Searching for chessboard in frame 60... not found
Searching for chessboard in frame 80... not found
Searching for chessboard in frame 100... not found
Searching for chessboard in frame 120... not found
Searching for chessboard in frame 140... ok
Searching for chessboard in frame 160... ok
Searching for chessboard in frame 180... ok
Searching for chessboard in frame 200... ok
Searching for chessboard in frame 220... ok
Searching for chessboard in frame 240... ok
Searching for chessboard in frame 260... ok
Searching for chessboard in frame 280... ok
...
Searching for chessboard in frame 1980... ok
Searching for chessboard in frame 2000... ok
Searching for chessboard in frame 2020... ok
Searching for chessboard in frame 2040... not found
Searching for chessboard in frame 2060... not found
Searching for chessboard in frame 2080... not found
Searching for chessboard in frame 2100... ok
Searching for chessboard in frame 2120... not found
Searching for chessboard in frame 2140... not found
Searching for chessboard in frame 2160... not found
Searching for chessboard in frame 2180... not found

Performing calibration...
RMS: 1.01973939405
camera matrix:
[[ 774.55857698    0.          619.69416634]
 [   0.          772.96410156  352.49790333]
 [   0.            0.            1.        ]]
distortion coefficients:  [ -3.65385859e-01   1.63224385e-01  -2.67163331e-03   3.38261891e-04
  -3.81711948e-02]

Removing Radial Distortion

You can test the found radial distortion coefficients by removing distortion from an image and checking if straight lines are really straight.

$ ./undistort.py --help
usage: undistort.py [-h] calibration input_mask out

Undistort images based on camera calibration.

positional arguments:
  calibration  input video file
  input_mask   input mask
  out          output directory

optional arguments:
  -h, --help   show this help message and exit

$ ./undistort.py calibration.yaml 'example_input/*.png' out/
processing example_input/distorted.png... ok

License

MIT License, except pattern.png from OpenCV (3-clause BSD License).

About

Camera intrinsic parameters calibration from chessboard video sequence.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%