| AbstractBufferedImageFeatureGenerator | 
 Abstract base class for BufferedImage feature generators. 
 | 
| AbstractCountColor | 
 Ancestor for feature generators that count pixels based on color. 
 | 
| AbstractScript | 
 Ancestor for BufferedImage feature generator scripts. 
 | 
| AbstractScriptedFeatureGenerator | 
 Abstract ancestor for BufferedImage feature generator that execute external scripts. 
 | 
| Barcode | 
 Decodes any barcode in the image. 
 | 
| BasicStatistics | 
 Calculates min/max/mean/median/stdev for each channel (R,G,B). 
 | 
| ColorCounts | 
 Counts the occurrences of colors in the image (alpha channel gets ignored). 
 | 
| CountColor | 
 Counts the occurrences of a specific color (alpha channel gets ignored). 
 | 
| CountColorOutside | 
| Dimensions | 
 Outputs the dimensions of the image: width, height, area, ratio. 
 | 
| Eccentricity | 
 Computes the eccentricity of the object. 
 | 
| Entropy | 
 Calculates the Shannon entropy of an image. 
  
 Original code taken from here: 
 http://stackoverflow.com/a/22280200
 
  
 
  
 | 
| FilteredBufferedImageFeatureGenerator | 
 Applies the filter (an image transformer) to the image first before generating the features from the transformed images. 
 | 
| Histogram | 
 Turns an image into a histogram. 
 In case of an 8-bit histogram, the image must already be converted to a gray image. 
 The number of bins per channel can be chosen as well (1-256). 
 | 
| HusMoments | 
 Calculates Hu's moments. 
 | 
| Max | 
 Simply outputs the RGB value of the brightest pixel. 
 | 
| Min | 
 Simply outputs the RGB value of the darkest pixel. 
 | 
| Moment | 
 Computes the specified moment. 
 | 
| MultiBufferedImageFeatureGenerator | 
 Applies multiple generators to the same image and merges the generated a feature vectors side-by-side. 
 | 
| OrientationVector | 
 Generates a vector that 
 | 
| PixelClassifications | 
 Generates a feature vector for each pixel classification that is stored in the image's report. 
 Pixel classifications are generated with the adams.flow.transformer.PixelSelector transformer, using the adams.flow.transformer.pixelselector.AddClassification action. 
 Automatically adds the classification label associated with a classification position in the report as a separate attribute. 
 | 
| Pixels | 
 Gets all the pixels of the image. 
 | 
| Scripted | 
 A feature generator that uses any scripting handler for processing the data with a script located in the specified file. 
 |