erodecv
Erode the given image, handle.
Syntax
R = erodecv(handle, kernel...)
R = erodecv(handle, kernel, anchor, iterations, type, color)
Inputs
- handle
 - Handle of an image.
 - kernel
 - Structuring element used for dilation. This can be created using the command getstructuringelementcv. An empty matrix, [] can also be used and a default structuring element will be used.
 - anchor
 - Optional vector of 2 integers specifying the anchor position. Default value is [-1 -1], indicating the anchor is at the center of the element.
 - iterations
 - Optional parameter specifying the number of times erosion is applied. Default value is 1.
 - type
 - Optional parameter specifying the pixel extrapolation method. Default value is 0.
            Valid values are:
            
- 0
 - Type cv::BORDER_CONSTANT - default value
 - 1
 - Type cv::BORDER_REPLICATE
 - 2
 - Type cv::BORDER_REFLECT
 - 4
 - Type cv::BORDER_REFLECT_101
 - 16
 - Type cv::BORDER_ISOLATED
 
 - color
 - Optional 3-element vector of integers representing blue, green, red (BGR) colors, if type is 0. Black will be the default color if nothing is specified with type.
 
Outputs
- r
 - Handle of the resulting image.
 
Examples
handle = imreadcv('image1.jpg');
R = erodecv(handle, []);
handle = imreadcv('image1.jpg');
kernel = getstructuringelementcv(1, [7 7]);
R = eerodecv(handle, kernel, [-1 -1], 1, 0);