T - Type of image being processed.public class WaveletDenoiseFilter<T extends ImageGray> extends java.lang.Object implements FilterImageInterface<T,T>
| Constructor and Description |
|---|
WaveletDenoiseFilter(WaveletTransform<T,?,?> wavelet,
DenoiseWavelet denoiser)
Specifies which wavelet and algorithm is used for removing image noise.
|
| 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 |
getVerticalBorder()
How many pixels are not processed along the vertical border.
|
void |
process(T original,
T denoised)
Processes the input image and writes the results to the output image.
|
public WaveletDenoiseFilter(WaveletTransform<T,?,?> wavelet, DenoiseWavelet denoiser)
wavelet - Description of the wavelet transform.denoiser - Algorithm used to remove noisepublic void process(T original, T denoised)
FilterImageInterfacepublic int getHorizontalBorder()
FilterImageInterfacegetHorizontalBorder in interface FilterImageInterface<T extends ImageGray,T extends ImageGray>public int getVerticalBorder()
FilterImageInterfacegetVerticalBorder in interface FilterImageInterface<T extends ImageGray,T extends ImageGray>public ImageType<T> getInputType()
FilterImageInterfacegetInputType in interface FilterImageInterface<T extends ImageGray,T extends ImageGray>public ImageType<T> getOutputType()
FilterImageInterfacegetOutputType in interface FilterImageInterface<T extends ImageGray,T extends ImageGray>