Searched refs:pointPolygonTest (Results 1 – 11 of 11) sorted by relevance
/external/opencv3/doc/py_tutorials/py_imgproc/py_contours/ |
D | py_table_of_contents_contours.markdown | 21 to find convexity defects, pointPolygonTest, match different shapes etc.
|
/external/opencv3/doc/tutorials/imgproc/shapedescriptors/point_polygon_test/ |
D | point_polygon_test.markdown | 9 - Use the OpenCV function @ref cv::pointPolygonTest
|
/external/opencv3/modules/imgproc/src/ |
D | geometry.cpp | 95 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/ |
D | pointPolygonTest_demo.cpp | 50 …{ 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/ |
D | py_contours_more_functions.markdown | 72 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/ |
D | imgproc.hpp | 3693 CV_EXPORTS_W double pointPolygonTest( InputArray contour, Point2f pt, bool measureDist );
|
/external/opencv3/modules/imgproc/misc/java/test/ |
D | ImgprocTest.java | 1471 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/ |
D | circlesgrid.cpp | 1154 if (pointPolygonTest(Mat(hulls[k]), vec, false) >= 0) in findBasis()
|
/external/opencv3/modules/imgproc/test/ |
D | test_convhull.cpp | 867 …if (cv::pointPolygonTest(triangle, cv::Point2f(convexPolygon[i].x, convexPolygon[i].y), true) < (-… in validate_test_results()
|
/external/opencv3/modules/java/src/ |
D | imgproc+Imgproc.java | 2435 public static double pointPolygonTest(MatOfPoint2f contour, Point pt, boolean measureDist) in pointPolygonTest() method in Imgproc
|
D | imgproc.cpp | 5076 double _retval_ = cv::pointPolygonTest( contour, pt, (bool)measureDist ); in Java_org_opencv_imgproc_Imgproc_pointPolygonTest_10()
|