-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathREADME.txt
More file actions
36 lines (18 loc) · 1017 Bytes
/
README.txt
File metadata and controls
36 lines (18 loc) · 1017 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# StereoCalibrate
Calibration of stereo pair of the images
- Modification based on Martin Peris's work
http://blog.martinperis.com/2011/01/opencv-stereo-camera-calibration.html
- Usage:
StereoCalibrate filename nx ny squareSize
- Example:
StereoCalibrate list.txt 9 6 2.5
- Paremeters:
filename - A list that contain all the pair images, the total number of images should be even.
nx - Number of horizontal squares
ny - Number of vertical squares
squareSize - Size of square
- Note:
nx, ny should be set correctly according to the checkerboard, if not, no correct results will get.
All the corners in the checkerboard in each image should be detected.
If the final average error is below 1.0, it indicates a good calibration. If not, please adjust the positions and orientations of the checkerboard. (For how to get a good calibration, please check Martin Peris's blog below:
(http://blog.martinperis.com/2011/01/opencv-stereo-camera-calibration.html)