| 2490 | } |
| 2491 | |
| 2492 | CV_IMPL int |
| 2493 | cvClipLine( CvSize size, CvPoint* pt1, CvPoint* pt2 ) |
| 2494 | { |
| 2495 | CV_Assert( pt1 && pt2 ); |
| 2496 | return cv::clipLine( size, *(cv::Point*)pt1, *(cv::Point*)pt2 ); |
| 2497 | } |
| 2498 | |
| 2499 | |
| 2500 | CV_IMPL int |
nothing calls this directly
no test coverage detected