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