Home
last modified time | relevance | path

Searched refs:vector_vector_Point_to_Mat (Results 1 – 5 of 5) sorted by relevance

/external/opencv3/modules/java/generator/src/cpp/
Dconverters.h48 void vector_vector_Point_to_Mat(std::vector< std::vector< cv::Point > >& vv_pt, cv::Mat& mat);
Dconverters.cpp272 void vector_vector_Point_to_Mat(std::vector< std::vector< Point > >& vv_pt, Mat& mat) in vector_vector_Point_to_Mat() function
/external/opencv3/modules/java/src/
Dimgproc+Imgproc.java2709 Mat pts_mat = Converters.vector_vector_Point_to_Mat(pts, pts_tmplm); in fillPoly()
2719 Mat pts_mat = Converters.vector_vector_Point_to_Mat(pts, pts_tmplm); in fillPoly()
2734 Mat pts_mat = Converters.vector_vector_Point_to_Mat(pts, pts_tmplm); in polylines()
2744 Mat pts_mat = Converters.vector_vector_Point_to_Mat(pts, pts_tmplm); in polylines()
2754 Mat pts_mat = Converters.vector_vector_Point_to_Mat(pts, pts_tmplm); in polylines()
2769 Mat contours_mat = Converters.vector_vector_Point_to_Mat(contours, contours_tmplm); in drawContours()
2779 Mat contours_mat = Converters.vector_vector_Point_to_Mat(contours, contours_tmplm); in drawContours()
2789 Mat contours_mat = Converters.vector_vector_Point_to_Mat(contours, contours_tmplm); in drawContours()
Dimgproc.cpp4536 vector_vector_Point_to_Mat( contours, contours_mat ); in Java_org_opencv_imgproc_Imgproc_findContours_10()
4561 vector_vector_Point_to_Mat( contours, contours_mat ); in Java_org_opencv_imgproc_Imgproc_findContours_11()
/external/opencv3/modules/java/generator/src/java/
Dutils+Converters.java479 public static Mat vector_vector_Point_to_Mat(List<MatOfPoint> pts, List<Mat> mats) { in vector_vector_Point_to_Mat() method in Converters