go-opencv/opencv2/gcv_calib3d/gcv_calib3d.hpp
2015-02-14 14:41:23 +08:00

8 lines
229 B
C++

#include <opencv2/opencv.hpp>
#include <vector>
#include <iostream>
typedef std::vector<cv::Point3f> VecPoint3f;
typedef std::vector<cv::Point2f> VecPoint2f;
cv::Mat gcvInitCameraMatrix2D(VecPoint3f objPts, VecPoint2f imgPts);