medianfilter(crackrec)R Documentation

medianfilter

Description

Median filter

Usage

medianfilter(matrix, mask=25, l=NULL, u=NULL, quantile=FALSE)

Arguments

matrix matrix representation of an image.
mask this function uses a box-shaped window of size 2*mask+1 x 2*mask+1.
l lower value for rescaling. Default is min(matrix).
u upper value for rescaling. Default is max(matrix).
quantile logical; if 'TRUE', quantile is used instead of min/max for rescaling.

Author(s)

Christine Mueller, Alexander Stepper stepper@mathematik.uni-kassel.de

See Also

rbmp, crackrec, threshold.msi, crackplot, shadow.remove.

Examples

## Not run: 
medianfilter(matrix, mask=25)
## End(Not run)

[Package crackrec version 2.1.5 Index]