public class FactoryBlurFilter
extends java.lang.Object
| Constructor and Description |
|---|
FactoryBlurFilter() |
| Modifier and Type | Method and Description |
|---|---|
static <T extends ImageSingleBand> |
gaussian(java.lang.Class<T> type,
double sigma,
int radius)
Creates a Gaussian filter for the specified image type.
|
static <T extends ImageSingleBand> |
mean(java.lang.Class<T> type,
int radius)
Creates a mean filter for the specified image type.
|
static <T extends ImageSingleBand> |
median(java.lang.Class<T> type,
int radius)
Creates a median filter for the specified image type.
|
public static <T extends ImageSingleBand> MedianImageFilter<T> median(java.lang.Class<T> type, int radius)
type - Image type.radius - Size of the filter.public static <T extends ImageSingleBand> BlurStorageFilter<T> mean(java.lang.Class<T> type, int radius)
type - Image type.radius - Size of the filter.public static <T extends ImageSingleBand> BlurStorageFilter<T> gaussian(java.lang.Class<T> type, double sigma, int radius)
type - Image type.radius - Size of the filter.