15 lines
278 B
Text
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>;
|
|
};
|