Uses of Class
FeatureExtractor.Filter.GenericFilterOutput

Packages that use GenericFilterOutput
FeatureExtractor The Feature Extractor is the component in charge of extracting the features from a given image (URL/image file). 
FeatureExtractor.Clustering Contains the abstract classes for the segmentation of images into regions. 
FeatureExtractor.Clustering.KMeans Contains classes implementing the (generic) k-means algorithm. 
FeatureExtractor.Clustering.Windsurf Contains classes specific for the Windsurf clustering algorithm. 
FeatureExtractor.Filter Contains the abstract classes for the filtering of images, to be performed in order to prepare each image to segmentation. 
FeatureExtractor.Filter.Wavelets Contains the wavelet-based filtering of images, using the Haar wavelet filter in the HSV domain. 
 

Uses of GenericFilterOutput in FeatureExtractor
 

Methods in FeatureExtractor with parameters of type GenericFilterOutput
protected abstract  Image FeatureExtractor.createImage(ImageID id, GenericFilterOutput filOut, ClusteringOutput clustOut)
          Creates an image with a particular ID from the output of the filter and the clustering algorithm.
protected  Image WindsurfFeatureExtractor.createImage(ImageID id, GenericFilterOutput filOut, ClusteringOutput clustOut)
          Creates a WindsurfImage with a particular ID from the output of the filter and the clustering algorithm.
 

Uses of GenericFilterOutput in FeatureExtractor.Clustering
 

Methods in FeatureExtractor.Clustering with parameters of type GenericFilterOutput
abstract  ClusteringOutput GenericClustering.cluster(GenericFilterOutput image)
          Applies the clustering algorithm to a given filtered image.
 

Uses of GenericFilterOutput in FeatureExtractor.Clustering.KMeans
 

Methods in FeatureExtractor.Clustering.KMeans with parameters of type GenericFilterOutput
 ClusteringOutput KMeansClustering.cluster(GenericFilterOutput image)
          Applies the k-means clustering algorithm to a given filtered image.
protected abstract  java.util.Vector<Pixel> KMeansClustering.selectPixels(GenericFilterOutput image)
          Abstract method to extract the pixels to be clustered from the output of the filter.
 

Uses of GenericFilterOutput in FeatureExtractor.Clustering.Windsurf
 

Methods in FeatureExtractor.Clustering.Windsurf with parameters of type GenericFilterOutput
protected  java.util.Vector<Pixel> WindsurfKMeansClustering.selectPixels(GenericFilterOutput image)
          method to extract the pixels to be clustered from the output of the filter.
 

Uses of GenericFilterOutput in FeatureExtractor.Filter
 

Methods in FeatureExtractor.Filter that return GenericFilterOutput
abstract  GenericFilterOutput GenericFilter.filter(javax.media.jai.PlanarImage image)
          Applies the filter to a given image.
 

Uses of GenericFilterOutput in FeatureExtractor.Filter.Wavelets
 

Subclasses of GenericFilterOutput in FeatureExtractor.Filter.Wavelets
 class WaveletFilterOutput
          Class for the output of wavelet-based image filtering.
 

Methods in FeatureExtractor.Filter.Wavelets that return GenericFilterOutput
 GenericFilterOutput WaveletFilter.filter(javax.media.jai.PlanarImage image)
          Applies the filter to a given image.