The Encog Project

org.encog.util.downsample
Interface Downsample

All Known Implementing Classes:
SimpleIntensityDownsample

public interface Downsample


Method Summary
 double[] downSample(int height, int width)
           
 void findBounds()
           
 int getDownSampleBottom()
           
 int getDownSampleLeft()
           
 int getDownSampleRight()
           
 int getDownSampleTop()
           
 java.awt.Image getImage()
           
 int getImageHeight()
           
 int getImageWidth()
           
 int[] getPixelMap()
           
 double getRatioX()
           
 double getRatioY()
           
 void processImage(java.awt.Image image)
           
 

Method Detail

downSample

double[] downSample(int height,
                    int width)

processImage

void processImage(java.awt.Image image)

findBounds

void findBounds()

getImage

java.awt.Image getImage()

getPixelMap

int[] getPixelMap()

getRatioX

double getRatioX()

getRatioY

double getRatioY()

getImageHeight

int getImageHeight()

getImageWidth

int getImageWidth()

getDownSampleLeft

int getDownSampleLeft()

getDownSampleRight

int getDownSampleRight()

getDownSampleTop

int getDownSampleTop()

getDownSampleBottom

int getDownSampleBottom()

The Encog Project