Class HistEqualize

java.lang.Object
  |
  +--java.lang.Thread
        |
        +--HistEqualize

public class HistEqualize
extends java.lang.Thread

HistEqualize histogram equalizes an image

Author:
Tim Sharman
See Also:
code.iface.equalize

Fields inherited from class java.lang.Thread
MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY
 
Constructor Summary
HistEqualize()
           
 
Method Summary
 int[] equalize(int[] src, int width, int height)
          Creates an image array for an image which has been histogram equalized
 
Methods inherited from class java.lang.Thread
activeCount, checkAccess, countStackFrames, currentThread, destroy, dumpStack, enumerate, getContextClassLoader, getName, getPriority, getThreadGroup, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, resume, run, setContextClassLoader, setDaemon, setName, setPriority, sleep, sleep, start, stop, stop, suspend, toString, yield
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

HistEqualize

public HistEqualize()
Method Detail

equalize

public int[] equalize(int[] src,
                      int width,
                      int height)
Creates an image array for an image which has been histogram equalized
Parameters:
src - Image array to be equalized
width - the width of the image
height - the height of the image
Returns:
An image array representing the equalized image