| 2050 | |
| 2051 | |
| 2052 | double cv::pointPolygonTest( InputArray _contour, |
| 2053 | Point2f pt, bool measureDist ) |
| 2054 | { |
| 2055 | Mat contour = _contour.getMat(); |
| 2056 | CV_Assert(contour.checkVector(2) >= 0 && |
| 2057 | (contour.depth() == CV_32F || contour.depth() == CV_32S)); |
| 2058 | CvMat c = Mat(contour); |
| 2059 | return cvPointPolygonTest( &c, pt, measureDist ); |
| 2060 | } |
| 2061 | |
| 2062 | /* End of file. */ |
nothing calls this directly
no test coverage detected