imgStdNErosionDilation {biOps} | R Documentation |
This function applies erosion n times and then dilation n times, with a 0-squared matrix with a given dimension.
imgStdNErosionDilation(imgdata, n, dim=3)
imgdata |
The image |
n |
Times to apply each operation |
dim |
mask's dimension (default = 3) |
return an imagedata object
This function accepts binary images only and will treat gray scale ones as binary images.
## Not run: x <- readJpeg(system.file("samples", "violet.jpg", package="biOps")) y <- imgStdNErosionDilation(x, 4, 5) ## End(Not run)