| imgMinimumFilter {biOps} | R Documentation |
This function filters an image by the Minimum filter, with a block window with a given dimension
imgMinimumFilter (imgdata, dim)
imgdata |
The image |
dim |
Block's dimension (default=3) |
return an imagedata object
## Not run:
x <- readJpeg(system.file("samples", "violet.jpg", package="biOps"))
y <- imgMinimumFilter(x, 5)
## End(Not run)