Home
last modified time | relevance | path

Searched refs:pointPolygonTest (Results 1 – 11 of 11) sorted by relevance

/external/opencv3/doc/py_tutorials/py_imgproc/py_contours/
Dpy_table_of_contents_contours.markdown21 to find convexity defects, pointPolygonTest, match different shapes etc.
/external/opencv3/doc/tutorials/imgproc/shapedescriptors/point_polygon_test/
Dpoint_polygon_test.markdown9 - Use the OpenCV function @ref cv::pointPolygonTest
/external/opencv3/modules/imgproc/src/
Dgeometry.cpp95 double cv::pointPolygonTest( InputArray _contour, Point2f pt, bool measureDist ) in pointPolygonTest() function in cv
250 return cv::pointPolygonTest(contour, pt, measure_dist != 0); in cvPointPolygonTest()
562 if( pointPolygonTest(_InputArray(fp1, n), fp2[0], false) >= 0 ) in intersectConvexConvex()
567 else if( pointPolygonTest(_InputArray(fp2, n), fp1[0], false) >= 0 ) in intersectConvexConvex()
/external/opencv3/samples/cpp/tutorial_code/ShapeDescriptors/
DpointPolygonTest_demo.cpp50 …{ raw_dist.at<float>(j,i) = (float)pointPolygonTest( contours[0], Point2f((float)i,(float)j), true… in main()
/external/opencv3/doc/py_tutorials/py_imgproc/py_contours/py_contours_more_functions/
Dpy_contours_more_functions.markdown72 dist = cv2.pointPolygonTest(cnt,(50,50),True)
126 -# Check the documentation for **cv2.pointPolygonTest()**, you can find a nice image in Red and
/external/opencv3/modules/imgproc/include/opencv2/
Dimgproc.hpp3693 CV_EXPORTS_W double pointPolygonTest( InputArray contour, Point2f pt, bool measureDist );
/external/opencv3/modules/imgproc/misc/java/test/
DImgprocTest.java1471 double sign1 = Imgproc.pointPolygonTest(contour, new Point(2, 2), false); in testPointPolygonTest()
1474 double sign2 = Imgproc.pointPolygonTest(contour, new Point(4, 4), true); in testPointPolygonTest()
/external/opencv3/modules/calib3d/src/
Dcirclesgrid.cpp1154 if (pointPolygonTest(Mat(hulls[k]), vec, false) >= 0) in findBasis()
/external/opencv3/modules/imgproc/test/
Dtest_convhull.cpp867 …if (cv::pointPolygonTest(triangle, cv::Point2f(convexPolygon[i].x, convexPolygon[i].y), true) < (-… in validate_test_results()
/external/opencv3/modules/java/src/
Dimgproc+Imgproc.java2435 public static double pointPolygonTest(MatOfPoint2f contour, Point pt, boolean measureDist) in pointPolygonTest() method in Imgproc
Dimgproc.cpp5076 double _retval_ = cv::pointPolygonTest( contour, pt, (bool)measureDist ); in Java_org_opencv_imgproc_Imgproc_pointPolygonTest_10()