opencv2/imgproc/imgproc.hpp" | |
7 | #include "opencv2/highgui/highgui.hpp" |
---|---|
8 | |
9 | #include <stdio.h> |
10 | #include <string.h> |
11 | #include <time.h> |
12 | |
13 | using namespace cv; |
14 | using namespace std; |
15 | |
16 | enum { DETECTION = 0, CAPTURING = 1, CALIBRATED = 2 }; |
17 | |
18 | void help() |
19 | { |
20 | printf( "\nThis is a camera calibration sample that calibrates 3 horizontally placed cameras together.\n" |
21 | "Usage: 3calibration\n" |
|