Skip to content

Commit

Permalink
Correct generation of Vec4iVector
Browse files Browse the repository at this point in the history
Fix for bytedeco#717
  • Loading branch information
jpsacha authored Apr 19, 2019
1 parent 31ab107 commit 8a16f26
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ public void map(InfoMap infoMap) {
.put(new Info("CvContourScanner").valueTypes("CvContourScanner").pointerTypes("@ByPtrPtr CvContourScanner"))
.put(new Info("cvCalcBackProject").cppTypes("void", "IplImage**", "CvArr*", "CvHistogram*"))
.put(new Info("cvCalcBackProjectPatch").cppTypes("void", "IplImage**", "CvArr*", "CvSize", "CvHistogram*", "int", "double"))
.put(new Info("cv::Vec2f", "cv::Vec3f", "cv::Vec4f", "cv::Vec4i", "cv::Vec6f").cast().pointerTypes("FloatPointer"))
.put(new Info("cv::Vec2f", "cv::Vec3f", "cv::Vec4f", "cv::Vec6f").cast().pointerTypes("FloatPointer"))
.put(new Info("cv::Vec4i").cast().pointerTypes("IntPointer"))
.put(new Info("std::vector<cv::Vec2f>").pointerTypes("Vec2fVector").define())
.put(new Info("std::vector<cv::Vec3f>").pointerTypes("Vec3fVector").define())
.put(new Info("std::vector<cv::Vec4f>").pointerTypes("Vec4fVector").define())
Expand Down

0 comments on commit 8a16f26

Please sign in to comment.