本文整理匯總了Java中org.opencv.utils.Converters.Mat_to_vector_vector_Point方法的典型用法代碼示例。如果您正苦於以下問題:Java Converters.Mat_to_vector_vector_Point方法的具體用法?Java Converters.Mat_to_vector_vector_Point怎麽用?Java Converters.Mat_to_vector_vector_Point使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.opencv.utils.Converters
的用法示例。
在下文中一共展示了Converters.Mat_to_vector_vector_Point方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: detectRegions
import org.opencv.utils.Converters; //導入方法依賴的package包/類
public void detectRegions(Mat image, List<MatOfPoint> msers, MatOfRect bboxes)
{
Mat msers_mat = new Mat();
Mat bboxes_mat = bboxes;
detectRegions_0(nativeObj, image.nativeObj, msers_mat.nativeObj, bboxes_mat.nativeObj);
Converters.Mat_to_vector_vector_Point(msers_mat, msers);
msers_mat.release();
return;
}
示例2: chamerMatching
import org.opencv.utils.Converters; //導入方法依賴的package包/類
public static int chamerMatching(Mat img, Mat templ, List<MatOfPoint> results, MatOfFloat cost, double templScale, int maxMatches, double minMatchDistance, int padX, int padY, int scales, double minScale, double maxScale, double orientationWeight, double truncate)
{
Mat results_mat = new Mat();
Mat cost_mat = cost;
int retVal = chamerMatching_0(img.nativeObj, templ.nativeObj, results_mat.nativeObj, cost_mat.nativeObj, templScale, maxMatches, minMatchDistance, padX, padY, scales, minScale, maxScale, orientationWeight, truncate);
Converters.Mat_to_vector_vector_Point(results_mat, results);
return retVal;
}
示例3: findContours
import org.opencv.utils.Converters; //導入方法依賴的package包/類
public static void findContours(Mat image, List<MatOfPoint> contours, Mat hierarchy, int mode, int method)
{
Mat contours_mat = new Mat();
findContours_1(image.nativeObj, contours_mat.nativeObj, hierarchy.nativeObj, mode, method);
Converters.Mat_to_vector_vector_Point(contours_mat, contours);
contours_mat.release();
return;
}
示例4: findContours
import org.opencv.utils.Converters; //導入方法依賴的package包/類
public static void findContours(Mat image, List<MatOfPoint> contours, Mat hierarchy, int mode, int method, Point offset)
{
Mat contours_mat = new Mat();
findContours_0(image.nativeObj, contours_mat.nativeObj, hierarchy.nativeObj, mode, method, offset.x, offset.y);
Converters.Mat_to_vector_vector_Point(contours_mat, contours);
contours_mat.release();
return;
}