go-opencv/opencv2/gcv_calib3d/gcv_calib3d.swigcxx
2015-02-14 22:31:03 +08:00

15 lines
278 B
Text

%module gcv_calib3d
%include "std_vector.i"
%{
#include "gcv_calib3d.hpp"
#include "gcv_core.hpp"
%}
%include "gcv_calib3d.hpp"
%include "gcv_core.hpp"
namespace std {
%template(GcvPoint3fVector) vector<cv::Point3f>;
%template(GcvPoint2fVector) vector<cv::Point2f>;
};