go-opencv/opencv2/gcv_utils/gcv_utils.swigcxx
2015-02-14 22:41:24 +08:00

13 lines
224 B
Text

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