pointPolygonTest 1154 modules/calib3d/src/circlesgrid.cpp if (pointPolygonTest(Mat(hulls[k]), vec, false) >= 0) pointPolygonTest 3693 modules/imgproc/include/opencv2/imgproc.hpp CV_EXPORTS_W double pointPolygonTest( InputArray contour, Point2f pt, bool measureDist ); pointPolygonTest 1471 modules/imgproc/misc/java/test/ImgprocTest.java double sign1 = Imgproc.pointPolygonTest(contour, new Point(2, 2), false); pointPolygonTest 1474 modules/imgproc/misc/java/test/ImgprocTest.java double sign2 = Imgproc.pointPolygonTest(contour, new Point(4, 4), true); pointPolygonTest 250 modules/imgproc/src/geometry.cpp return cv::pointPolygonTest(contour, pt, measure_dist != 0); pointPolygonTest 562 modules/imgproc/src/geometry.cpp if( pointPolygonTest(_InputArray(fp1, n), fp2[0], false) >= 0 ) pointPolygonTest 567 modules/imgproc/src/geometry.cpp else if( pointPolygonTest(_InputArray(fp2, n), fp1[0], false) >= 0 ) pointPolygonTest 867 modules/imgproc/test/test_convhull.cpp if (cv::pointPolygonTest(triangle, cv::Point2f(convexPolygon[i].x, convexPolygon[i].y), true) < (-eps)) pointPolygonTest 50 samples/cpp/tutorial_code/ShapeDescriptors/pointPolygonTest_demo.cpp { raw_dist.at<float>(j,i) = (float)pointPolygonTest( contours[0], Point2f((float)i,(float)j), true ); }