Uses of Class
org.opencv.core.MatOfPoint
Packages that use MatOfPoint
-
Uses of MatOfPoint in org.opencv.core
Methods in org.opencv.core that return MatOfPoint -
Uses of MatOfPoint in org.opencv.imgproc
Methods in org.opencv.imgproc with parameters of type MatOfPointModifier and TypeMethodDescriptionstatic voidImgproc.convexHull(MatOfPoint points, MatOfInt hull) Finds the convex hull of a point set.static voidImgproc.convexHull(MatOfPoint points, MatOfInt hull, boolean clockwise) Finds the convex hull of a point set.static voidImgproc.convexityDefects(MatOfPoint contour, MatOfInt convexhull, MatOfInt4 convexityDefects) Finds the convexity defects of a contour.static voidImgproc.ellipse2Poly(Point center, Size axes, int angle, int arcStart, int arcEnd, int delta, MatOfPoint pts) Approximates an elliptic arc with a polyline.static voidImgproc.fillConvexPoly(Mat img, MatOfPoint points, Scalar color) Fills a convex polygon.static voidImgproc.fillConvexPoly(Mat img, MatOfPoint points, Scalar color, int lineType) Fills a convex polygon.static voidImgproc.fillConvexPoly(Mat img, MatOfPoint points, Scalar color, int lineType, int shift) Fills a convex polygon.static voidImgproc.goodFeaturesToTrack(Mat image, MatOfPoint corners, int maxCorners, double qualityLevel, double minDistance) Determines strong corners on an image.static voidImgproc.goodFeaturesToTrack(Mat image, MatOfPoint corners, int maxCorners, double qualityLevel, double minDistance, Mat mask) Determines strong corners on an image.static voidImgproc.goodFeaturesToTrack(Mat image, MatOfPoint corners, int maxCorners, double qualityLevel, double minDistance, Mat mask, int blockSize) Determines strong corners on an image.static voidImgproc.goodFeaturesToTrack(Mat image, MatOfPoint corners, int maxCorners, double qualityLevel, double minDistance, Mat mask, int blockSize, boolean useHarrisDetector) Determines strong corners on an image.static voidImgproc.goodFeaturesToTrack(Mat image, MatOfPoint corners, int maxCorners, double qualityLevel, double minDistance, Mat mask, int blockSize, boolean useHarrisDetector, double k) Determines strong corners on an image.static voidImgproc.goodFeaturesToTrack(Mat image, MatOfPoint corners, int maxCorners, double qualityLevel, double minDistance, Mat mask, int blockSize, int gradientSize) static voidImgproc.goodFeaturesToTrack(Mat image, MatOfPoint corners, int maxCorners, double qualityLevel, double minDistance, Mat mask, int blockSize, int gradientSize, boolean useHarrisDetector) static voidImgproc.goodFeaturesToTrack(Mat image, MatOfPoint corners, int maxCorners, double qualityLevel, double minDistance, Mat mask, int blockSize, int gradientSize, boolean useHarrisDetector, double k) static booleanImgproc.isContourConvex(MatOfPoint contour) Tests a contour convexity.Method parameters in org.opencv.imgproc with type arguments of type MatOfPointModifier and TypeMethodDescriptionstatic voidImgproc.drawContours(Mat image, List<MatOfPoint> contours, int contourIdx, Scalar color) Draws contours outlines or filled contours.static voidImgproc.drawContours(Mat image, List<MatOfPoint> contours, int contourIdx, Scalar color, int thickness) Draws contours outlines or filled contours.static voidImgproc.drawContours(Mat image, List<MatOfPoint> contours, int contourIdx, Scalar color, int thickness, int lineType) Draws contours outlines or filled contours.static voidImgproc.drawContours(Mat image, List<MatOfPoint> contours, int contourIdx, Scalar color, int thickness, int lineType, Mat hierarchy) Draws contours outlines or filled contours.static voidImgproc.drawContours(Mat image, List<MatOfPoint> contours, int contourIdx, Scalar color, int thickness, int lineType, Mat hierarchy, int maxLevel) Draws contours outlines or filled contours.static voidImgproc.drawContours(Mat image, List<MatOfPoint> contours, int contourIdx, Scalar color, int thickness, int lineType, Mat hierarchy, int maxLevel, Point offset) Draws contours outlines or filled contours.static voidImgproc.fillPoly(Mat img, List<MatOfPoint> pts, Scalar color) Fills the area bounded by one or more polygons.static voidImgproc.fillPoly(Mat img, List<MatOfPoint> pts, Scalar color, int lineType) Fills the area bounded by one or more polygons.static voidImgproc.fillPoly(Mat img, List<MatOfPoint> pts, Scalar color, int lineType, int shift) Fills the area bounded by one or more polygons.static voidImgproc.fillPoly(Mat img, List<MatOfPoint> pts, Scalar color, int lineType, int shift, Point offset) Fills the area bounded by one or more polygons.static voidImgproc.findContours(Mat image, List<MatOfPoint> contours, Mat hierarchy, int mode, int method) Finds contours in a binary image.static voidImgproc.findContours(Mat image, List<MatOfPoint> contours, Mat hierarchy, int mode, int method, Point offset) Finds contours in a binary image.static voidImgproc.polylines(Mat img, List<MatOfPoint> pts, boolean isClosed, Scalar color) Draws several polygonal curves.static voidImgproc.polylines(Mat img, List<MatOfPoint> pts, boolean isClosed, Scalar color, int thickness) Draws several polygonal curves.static voidImgproc.polylines(Mat img, List<MatOfPoint> pts, boolean isClosed, Scalar color, int thickness, int lineType) Draws several polygonal curves.static voidImgproc.polylines(Mat img, List<MatOfPoint> pts, boolean isClosed, Scalar color, int thickness, int lineType, int shift) Draws several polygonal curves. -
Uses of MatOfPoint in org.opencv.utils
Method parameters in org.opencv.utils with type arguments of type MatOfPointModifier and TypeMethodDescriptionstatic voidConverters.Mat_to_vector_vector_Point(Mat m, List<MatOfPoint> pts) static MatConverters.vector_vector_Point_to_Mat(List<MatOfPoint> pts, List<Mat> mats)