| 1354 | } |
| 1355 | |
| 1356 | void cv::erode( InputArray src, OutputArray dst, InputArray kernel, |
| 1357 | Point anchor, int iterations, |
| 1358 | int borderType, const Scalar& borderValue ) |
| 1359 | { |
| 1360 | morphOp( MORPH_ERODE, src, dst, kernel, anchor, iterations, borderType, borderValue ); |
| 1361 | } |
| 1362 | |
| 1363 | |
| 1364 | void cv::dilate( InputArray src, OutputArray dst, InputArray kernel, |