imgMaximumFilter {biOps} | R Documentation |
This function filters an image by the Maximum filter, with a block window with a given dimension
imgMaximumFilter (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 <- imgMaximumFilter(x, 5) ## End(Not run)