medianfilter {crackrec} | R Documentation |
Median filter
medianfilter(matrix, mask=25, l=NULL, u=NULL, quantile=FALSE)
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. |
Christine Mueller, Alexander Stepper stepper@mathematik.uni-kassel.de
rbmp
, crackrec
, threshold.msi
, crackplot
, shadow.remove
.
## Not run: medianfilter(matrix, mask=25) ## End(Not run)