16 lines
309 B
Text
16 lines
309 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>;
|
|
|
|
%template(GcvIntVector) vector<int>;
|
|
%template(GcvFloatVector) vector<float>;
|
|
};
|