FeatureExtractor.Filter
Class GenericFilter

java.lang.Object
  extended by FeatureExtractor.Filter.GenericFilter
Direct Known Subclasses:
WaveletFilter

public abstract class GenericFilter
extends java.lang.Object

Abstract class for the filtering of images.


Constructor Summary
GenericFilter()
          Basic constructor.
 
Method Summary
abstract  GenericFilterOutput filter(javax.media.jai.PlanarImage image)
          Applies the filter to a given image.
abstract  java.lang.String toString()
          Returns a string representation of this wavelet filter.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

GenericFilter

public GenericFilter()
Basic constructor.

Method Detail

toString

public abstract java.lang.String toString()
Returns a string representation of this wavelet filter.

Overrides:
toString in class java.lang.Object
Returns:
A string representation of this wavelet filter.

filter

public abstract GenericFilterOutput filter(javax.media.jai.PlanarImage image)
Applies the filter to a given image.

Parameters:
image - Image to which the filter should be applied.
Returns:
Generic filtering result.