| 1475 | |
| 1476 | |
| 1477 | CV_IMPL void |
| 1478 | cvReleaseStructuringElement( IplConvKernel ** element ) |
| 1479 | { |
| 1480 | if( !element ) |
| 1481 | CV_Error( CV_StsNullPtr, "" ); |
| 1482 | cvFree( element ); |
| 1483 | } |
| 1484 | |
| 1485 | |
| 1486 | static void convertConvKernel( const IplConvKernel* src, cv::Mat& dst, cv::Point& anchor ) |
no outgoing calls
no test coverage detected