public class BlurStorageFilter<T extends ImageSingleBand> extends java.lang.Object implements BlurFilter<T>
BlurImageOps which is then invoked later on.| Constructor and Description |
|---|
BlurStorageFilter(java.lang.String functionName,
java.lang.Class<T> inputType,
double sigma,
int radius) |
BlurStorageFilter(java.lang.String functionName,
java.lang.Class<T> inputType,
int radius) |
| Modifier and Type | Method and Description |
|---|---|
int |
getHorizontalBorder()
How many pixels are not processed along the horizontal border.
|
ImageType<T> |
getInputType()
Specifies the input image type
|
ImageType<T> |
getOutputType()
Specifies the output image type
|
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 BlurStorageFilter(java.lang.String functionName,
java.lang.Class<T> inputType,
int radius)
public BlurStorageFilter(java.lang.String functionName,
java.lang.Class<T> inputType,
double sigma,
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 ImageType<T> getInputType()
FilterImageInterfacegetInputType in interface FilterImageInterface<T extends ImageSingleBand,T extends ImageSingleBand>public ImageType<T> getOutputType()
FilterImageInterfacegetOutputType in interface FilterImageInterface<T extends ImageSingleBand,T extends ImageSingleBand>