Home
last modified time | relevance | path

Searched refs:convexHull (Results 1 – 22 of 22) sorted by relevance

/external/skia/tests/
DPathOpsDCubicTest.cpp21 cubic.convexHull(order); in DEF_TEST()
/external/opencv3/samples/python2/
Dmser.py36 hulls = [cv2.convexHull(p.reshape(-1, 1, 2)) for p in regions]
/external/opencv3/doc/tutorials/imgproc/shapedescriptors/hull/
Dhull.markdown9 - Use the OpenCV function @ref cv::convexHull
/external/opencv3/samples/cpp/
Dconvexhull.cpp40 convexHull(Mat(points), hull, true); in main()
Dselect3dobj.cpp178 convexHull(Mat_<Point>(Mat(imgpt)), hull); in extract3DBox()
/external/opencv3/samples/cpp/tutorial_code/ShapeDescriptors/
Dhull_demo.cpp68 { convexHull( Mat(contours[i]), hull[i], false ); } in thresh_callback()
/external/opencv3/doc/py_tutorials/py_imgproc/py_contours/py_contours_more_functions/
Dpy_contours_more_functions.markdown23 hull = cv2.convexHull(cnt,returnPoints = False)
45 hull = cv2.convexHull(cnt,returnPoints = False)
/external/opencv3/doc/py_tutorials/py_imgproc/py_contours/py_contour_features/
Dpy_contour_features.markdown84 in some cases). Here, **cv2.convexHull()** function checks a curve for convexity defects and
94 hull = cv2.convexHull(points[, hull[, clockwise[, returnPoints]]
107 hull = cv2.convexHull(cnt)
/external/skia/src/pathops/
DSkPathOpsCubic.h55 int convexHull(char order[kPointCount]) const;
DSkOpCubicHull.cpp55 int SkDCubic::convexHull(char order[4]) const { in convexHull() function in SkDCubic
DSkPathOpsCubic.cpp155 int hullCount = convexHull(hullOrder); in hullIntersects()
/external/opencv3/doc/py_tutorials/py_imgproc/py_contours/py_contour_properties/
Dpy_contour_properties.markdown43 hull = cv2.convexHull(cnt)
/external/opencv3/modules/imgproc/src/
Dconvhull.cpp129 void convexHull( InputArray _points, OutputArray _hull, bool clockwise, bool returnPoints ) in convexHull() function
475 cv::convexHull(cv::cvarrToMat(ptseq, false, false, 0, &_ptbuf), h0, in cvConvexHull2()
Drotcalipers.cpp349 convexHull(_points, hull, true, true); in minAreaRect()
Dmin_enclosing_triangle.cpp344 convexHull(pointsVector, polygon, true, true); in createConvexHull()
/external/opencv3/modules/features2d/src/
Dblobdetector.cpp261 convexHull(Mat(contours[contourIdx]), hull); in findBlobs()
/external/opencv3/modules/imgproc/test/
Dtest_convhull.cpp514 cv::convexHull(_points, _hull, clockwise); in run_func()
521 cv::convexHull(_points, _hull, clockwise); in run_func()
528 cv::convexHull(_points, _hull, clockwise); in run_func()
832 cv::convexHull(pointsAsVector, convexPolygon, true, true); in run_func()
/external/opencv3/modules/imgproc/misc/java/test/
DImgprocTest.java427 Imgproc.convexHull(points, hull); in testConvexHullMatMat()
447 Imgproc.convexHull(points, hull, true); in testConvexHullMatMatBooleanBoolean()
466 Imgproc.convexHull(points, hull); in testConvexityDefects()
/external/opencv3/modules/calib3d/src/
Dcirclesgrid.cpp161 convexHull(Mat(patternPoints), hull2f, false); in findGrid()
1139 convexHull(Mat(clusters[i]), hulls[i]); in findBasis()
/external/opencv3/modules/imgproc/include/opencv2/
Dimgproc.hpp3589 CV_EXPORTS_W void convexHull( InputArray points, OutputArray hull,
/external/opencv3/modules/java/src/
Dimgproc+Imgproc.java2329 public static void convexHull(MatOfPoint points, MatOfInt hull, boolean clockwise) in convexHull() method in Imgproc
2339 public static void convexHull(MatOfPoint points, MatOfInt hull) in convexHull() method in Imgproc
Dimgproc.cpp4857 cv::convexHull( points, hull, (bool)clockwise, true ); in Java_org_opencv_imgproc_Imgproc_convexHull_10()
4883 cv::convexHull( points, hull ); in Java_org_opencv_imgproc_Imgproc_convexHull_11()