mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
460 B
28 lines
460 B
/* |
|
* include the headers required by the generated cpp code |
|
*/ |
|
%{ |
|
#include "Calibration.h" |
|
#include "image_pool.h" |
|
using namespace cv; |
|
%} |
|
|
|
|
|
class Calibration { |
|
public: |
|
|
|
Size patternsize; |
|
|
|
Calibration(); |
|
virtual ~Calibration(); |
|
|
|
bool detectAndDrawChessboard(int idx, image_pool* pool); |
|
|
|
void resetChess(); |
|
|
|
int getNumberDetectedChessboards(); |
|
|
|
void calibrate(const char* filename); |
|
|
|
void drawText(int idx, image_pool* pool, const char* text); |
|
};
|
|
|