org.opencv.core.Point3 Java Examples
The following examples show how to use
org.opencv.core.Point3.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Converters.java From Chinese-number-gestures-recognition with BSD 2-Clause "Simplified" License | 4 votes |
public static Mat vector_Point3f_to_Mat(List<Point3> pts) { return vector_Point3_to_Mat(pts, CvType.CV_32F); }
Example #2
Source File: Converters.java From SmartPaperScan with Apache License 2.0 | 4 votes |
public static Mat vector_Point3f_to_Mat(List<Point3> pts) { return vector_Point3_to_Mat(pts, CvType.CV_32F); }
Example #3
Source File: Converters.java From Image-Detection-Samples with Apache License 2.0 | 4 votes |
public static void Mat_to_vector_Point3f(Mat m, List<Point3> pts) { Mat_to_vector_Point3(m, pts); }
Example #4
Source File: Converters.java From real_time_circle_detection_android with MIT License | 4 votes |
public static Mat vector_Point3i_to_Mat(List<Point3> pts) { return vector_Point3_to_Mat(pts, CvType.CV_32S); }
Example #5
Source File: Converters.java From real_time_circle_detection_android with MIT License | 4 votes |
public static Mat vector_Point3f_to_Mat(List<Point3> pts) { return vector_Point3_to_Mat(pts, CvType.CV_32F); }
Example #6
Source File: Converters.java From FaceDetectDemo with Apache License 2.0 | 4 votes |
public static void Mat_to_vector_Point3d(Mat m, List<Point3> pts) { Mat_to_vector_Point3(m, pts); }
Example #7
Source File: Converters.java From FaceDetectDemo with Apache License 2.0 | 4 votes |
public static Mat vector_Point3d_to_Mat(List<Point3> pts) { return vector_Point3_to_Mat(pts, CvType.CV_64F); }
Example #8
Source File: Converters.java From MOAAP with MIT License | 4 votes |
public static void Mat_to_vector_Point3d(Mat m, List<Point3> pts) { Mat_to_vector_Point3(m, pts); }
Example #9
Source File: Converters.java From FaceDetectDemo with Apache License 2.0 | 4 votes |
public static Mat vector_Point3i_to_Mat(List<Point3> pts) { return vector_Point3_to_Mat(pts, CvType.CV_32S); }
Example #10
Source File: Converters.java From Image-Detection-Samples with Apache License 2.0 | 4 votes |
public static void Mat_to_vector_Point3d(Mat m, List<Point3> pts) { Mat_to_vector_Point3(m, pts); }
Example #11
Source File: Converters.java From FaceDetectDemo with Apache License 2.0 | 4 votes |
public static void Mat_to_vector_Point3i(Mat m, List<Point3> pts) { Mat_to_vector_Point3(m, pts); }
Example #12
Source File: Converters.java From Chinese-number-gestures-recognition with BSD 2-Clause "Simplified" License | 4 votes |
public static void Mat_to_vector_Point3d(Mat m, List<Point3> pts) { Mat_to_vector_Point3(m, pts); }
Example #13
Source File: Converters.java From Chinese-number-gestures-recognition with BSD 2-Clause "Simplified" License | 4 votes |
public static void Mat_to_vector_Point3f(Mat m, List<Point3> pts) { Mat_to_vector_Point3(m, pts); }
Example #14
Source File: Converters.java From Chinese-number-gestures-recognition with BSD 2-Clause "Simplified" License | 4 votes |
public static void Mat_to_vector_Point3i(Mat m, List<Point3> pts) { Mat_to_vector_Point3(m, pts); }
Example #15
Source File: Converters.java From Chinese-number-gestures-recognition with BSD 2-Clause "Simplified" License | 4 votes |
public static Mat vector_Point3d_to_Mat(List<Point3> pts) { return vector_Point3_to_Mat(pts, CvType.CV_64F); }
Example #16
Source File: Converters.java From MOAAP with MIT License | 4 votes |
public static Mat vector_Point3f_to_Mat(List<Point3> pts) { return vector_Point3_to_Mat(pts, CvType.CV_32F); }
Example #17
Source File: Converters.java From MOAAP with MIT License | 4 votes |
public static Mat vector_Point3i_to_Mat(List<Point3> pts) { return vector_Point3_to_Mat(pts, CvType.CV_32S); }
Example #18
Source File: Converters.java From MOAAP with MIT License | 4 votes |
public static Mat vector_Point3i_to_Mat(List<Point3> pts) { return vector_Point3_to_Mat(pts, CvType.CV_32S); }
Example #19
Source File: Converters.java From MOAAP with MIT License | 4 votes |
public static Mat vector_Point3i_to_Mat(List<Point3> pts) { return vector_Point3_to_Mat(pts, CvType.CV_32S); }
Example #20
Source File: Converters.java From OpenCvFaceDetect with Apache License 2.0 | 4 votes |
public static void Mat_to_vector_Point3i(Mat m, List<Point3> pts) { Mat_to_vector_Point3(m, pts); }
Example #21
Source File: Converters.java From OpenCvFaceDetect with Apache License 2.0 | 4 votes |
public static Mat vector_Point3d_to_Mat(List<Point3> pts) { return vector_Point3_to_Mat(pts, CvType.CV_64F); }
Example #22
Source File: Converters.java From MOAAP with MIT License | 4 votes |
public static void Mat_to_vector_Point3i(Mat m, List<Point3> pts) { Mat_to_vector_Point3(m, pts); }
Example #23
Source File: Converters.java From OpenCvFaceDetect with Apache License 2.0 | 4 votes |
public static Mat vector_Point3i_to_Mat(List<Point3> pts) { return vector_Point3_to_Mat(pts, CvType.CV_32S); }
Example #24
Source File: Converters.java From OpenCV-android with Apache License 2.0 | 4 votes |
public static void Mat_to_vector_Point3d(Mat m, List<Point3> pts) { Mat_to_vector_Point3(m, pts); }
Example #25
Source File: Converters.java From OpenCV-android with Apache License 2.0 | 4 votes |
public static void Mat_to_vector_Point3f(Mat m, List<Point3> pts) { Mat_to_vector_Point3(m, pts); }
Example #26
Source File: Converters.java From OpenCV-android with Apache License 2.0 | 4 votes |
public static void Mat_to_vector_Point3i(Mat m, List<Point3> pts) { Mat_to_vector_Point3(m, pts); }
Example #27
Source File: Converters.java From OpenCV-android with Apache License 2.0 | 4 votes |
public static Mat vector_Point3d_to_Mat(List<Point3> pts) { return vector_Point3_to_Mat(pts, CvType.CV_64F); }
Example #28
Source File: Converters.java From OpenCV-android with Apache License 2.0 | 4 votes |
public static Mat vector_Point3f_to_Mat(List<Point3> pts) { return vector_Point3_to_Mat(pts, CvType.CV_32F); }
Example #29
Source File: Converters.java From OpenCV-android with Apache License 2.0 | 4 votes |
public static Mat vector_Point3i_to_Mat(List<Point3> pts) { return vector_Point3_to_Mat(pts, CvType.CV_32S); }
Example #30
Source File: Converters.java From MOAAP with MIT License | 4 votes |
public static Mat vector_Point3d_to_Mat(List<Point3> pts) { return vector_Point3_to_Mat(pts, CvType.CV_64F); }