public class MedianImageFilter<T extends ImageSingleBand> extends Object implements BlurFilter<T>
BlurImageOps which is then invoked later on.| Constructor and Description |
|---|
MedianImageFilter(Class<T> imageType,
int radius) |
| Modifier and Type | Method and Description |
|---|---|
int |
getHorizontalBorder()
How many pixels are not processed along the horizontal border.
|
Class<T> |
getInputType()
Specifies the type of image it takes as input.
|
int |
getRadius()
Radius of the square region.
|
int |
getVerticalBorder()
How many pixels are not processed along the vertical border.
|
void |
process(T input,
T output)
Processes the input image and writes the results to the output image.
|
void |
setRadius(int radius) |
public int getRadius()
getRadius in interface BlurFilter<T extends ImageSingleBand>public void setRadius(int radius)
setRadius in interface BlurFilter<T extends ImageSingleBand>public void process(T input, T output)
FilterImageInterfaceprocess in interface FilterImageInterface<T extends ImageSingleBand,T extends ImageSingleBand>input - Input image.output - Output image.public int getHorizontalBorder()
FilterImageInterfacegetHorizontalBorder in interface FilterImageInterface<T extends ImageSingleBand,T extends ImageSingleBand>public int getVerticalBorder()
FilterImageInterfacegetVerticalBorder in interface FilterImageInterface<T extends ImageSingleBand,T extends ImageSingleBand>public Class<T> getInputType()
FilterImageInterfacegetInputType in interface FilterImageInterface<T extends ImageSingleBand,T extends ImageSingleBand>Copyright © 2013. All Rights Reserved.