@@ -24,16 +24,13 @@ namespace stMorph {
24
24
* structuring element is used. Kernel can be created using #getStructuringElement.
25
25
* @param anchor position of the anchor within the element; default value (-1, -1) means that the
26
26
* anchor is at the element center.
27
- * @param iterations number of times erosion is applied.
28
27
* @param borderType pixel extrapolation method, see #BorderTypes. #BORDER_WRAP is not supported.
29
28
* @param borderValue border value in case of a constant border
30
29
*
31
30
* @see cv::erode
32
31
*/
33
- CV_EXPORTS_W void erode ( InputArray src, OutputArray dst, InputArray kernel,
34
- Point anchor = Point(-1 ,-1 ), int iterations = 1,
35
- int borderType = BORDER_CONSTANT,
36
- const Scalar& borderValue = morphologyDefaultBorderValue() );
32
+ CV_EXPORTS_W void erode ( InputArray src, OutputArray dst, InputArray kernel, Point anchor = Point(-1 ,-1 ),
33
+ int borderType = BORDER_CONSTANT, const Scalar& borderValue = morphologyDefaultBorderValue() );
37
34
38
35
/* *
39
36
* @brief Faster implementation of cv::dilate with sparse table concept.
@@ -45,16 +42,13 @@ CV_EXPORTS_W void erode( InputArray src, OutputArray dst, InputArray kernel,
45
42
* structuring element is used. Kernel can be created using #getStructuringElement
46
43
* @param anchor position of the anchor within the element; default value (-1, -1) means that the
47
44
* anchor is at the element center.
48
- * @param iterations number of times dilation is applied.
49
45
* @param borderType pixel extrapolation method, see #BorderTypes. #BORDER_WRAP is not suported.
50
46
* @param borderValue border value in case of a constant border
51
47
*
52
48
* @see cv::dilate
53
49
*/
54
- CV_EXPORTS_W void dilate ( InputArray src, OutputArray dst, InputArray kernel,
55
- Point anchor = Point(-1 ,-1 ), int iterations = 1,
56
- int borderType = BORDER_CONSTANT,
57
- const Scalar& borderValue = morphologyDefaultBorderValue() );
50
+ CV_EXPORTS_W void dilate ( InputArray src, OutputArray dst, InputArray kernel, Point anchor = Point(-1 , -1 ),
51
+ int borderType = BORDER_CONSTANT, const Scalar& borderValue = morphologyDefaultBorderValue() );
58
52
59
53
/* *
60
54
* @brief Faster implementation of cv::morphologyEx with sparse table concept.
@@ -76,11 +70,9 @@ CV_EXPORTS_W void dilate( InputArray src, OutputArray dst, InputArray kernel,
76
70
*
77
71
* @see cv::morphologyEx
78
72
*/
79
- CV_EXPORTS_W void morphologyEx ( InputArray src, OutputArray dst,
80
- int op, InputArray kernel,
81
- Point anchor = Point(-1 ,-1 ), int iterations = 1,
82
- int borderType = BORDER_CONSTANT,
83
- const Scalar& borderValue = morphologyDefaultBorderValue() );
73
+ CV_EXPORTS_W void morphologyEx ( InputArray src, OutputArray dst, int op, InputArray kernel, Point anchor = Point(-1 ,-1 ),
74
+ int iterations = 1,
75
+ int borderType = BORDER_CONSTANT, const Scalar& borderValue = morphologyDefaultBorderValue() );
84
76
85
77
// ! @}
86
78
0 commit comments