This is an archive of the old MediaWiki-based ImageJ wiki. The current website can be found at imagej.net.

Enhance Local Contrast (CLAHE)

TEM original image
TEM CLAHE processed, (block: 50; bins: 256; max slope: 2.5)
Enhance Local Contrast (CLAHE) (Fiji)
Author Stephan Saalfeld ([1])
Maintainer Stephan Saalfeld
Source [2]
Initial release November 13th, 2009
Latest version September 1st, 2010
Development status stable, active
Category Plugins, Filtering


The plugin Enhance Local Contrast (CLAHE) implements the method Contrast Limited Adaptive Histogram Equalization[1] for enhancing the local contrast of an image. In Fiji, it is called through the menu entry Process / Enhance Local Contrast (CLAHE). The filter respects the selected regions of interest and triggers an Undo-step.

The method has three parameters:

block size
the size of the local region around a pixel for which the histogram is equalized. This size should be larger than the size of features to be preserved.
histogram bins
the number of histogram bins used for histogram equalization. The implementation internally works with byte resolution, so values larger than 256 are not meaningful. This value also limits the quantification of the output when processing 8bit gray or 24bit RGB images. The number of histogram bins should be smaller than the number of pixels in a block.
max slope
limits the contrast stretch in the intensity transfer function. Very large values will let the histogram equalization do whatever it wants to do, that is result in maximal local contrast. The value 1 will result in the original image.

In addition, the PlugIn asks for:

mask
choose, from the currently opened images, one that should be used as a mask for the filter application. Selections and masks can be used exclusively or in combination.
fast
use the fast but less accurate version of the filter. The fast version does not evaluate the intensity transfer function for each pixel independently but for a grid of adjacent boxes of the given block size only and interpolates for locations in between.
process as composite
images with multiple color channels can be processed in two modes
checked
use the displayed image to estimate the intensity transfer that is then applied to all channels individually. This is the desired mode for getting local contrast compression for color photographs with a higher bit-depth and higher dynamic range than appropriate for a digital display.
unchecked
the selected channel is processed individually.
Photo1 original image
Photo1 CLAHE processed, (block: 150; bins: 256; max slope: 3)
Photo2 original image
Photo2 CLAHE processed, (block: 50; bins: 256; max slope: 3)

Tips

How can I process a series/stack of images?
Execute the following macro from ImageJ's macro editor or Fiji's scripting editor:
blocksize = 127;
histogram_bins = 256;
maximum_slope = 3;
mask = "*None*";
fast = true;
process_as_composite = true;

getDimensions( width, height, channels, slices, frames );
isComposite = channels > 1;
parameters =
  "blocksize=" + blocksize +
  " histogram=" + histogram_bins +
  " maximum=" + maximum_slope +
  " mask=" + mask;
if ( fast )
  parameters += " fast_(less_accurate)";
if ( isComposite && process_as_composite ) {
  parameters += " process_as_composite";
  channels = 1;
}
  
for ( f=1; f<=frames; f++ ) {
  Stack.setFrame( f );
  for ( s=1; s<=slices; s++ ) {
    Stack.setSlice( s );
    for ( c=1; c<=channels; c++ ) {
      Stack.setChannel( c );
      run( "Enhance Local Contrast (CLAHE)", parameters );
    }
  }
}

References

  1. Zuiderveld, Karel (1994), "Contrast limited adaptive histogram equalization", Graphics gems IV, Academic Press Professional, Inc., pp. 474–485, <http://portal.acm.org/citation.cfm?id=180940>