interfaces.slicer.filtering.histogrammatching

HistogramMatching

Link to code

Wraps the executable command ``HistogramMatching ``.

title: Histogram Matching

category: Filtering

description: Normalizes the grayscale values of a source image based on the grayscale values of a reference image. This filter uses a histogram matching technique where the histograms of the two images are matched only at a specified number of quantile values.

The filter was orginally designed to normalize MR images of the sameMR protocol and same body part. The algorithm works best if background pixels are excluded from both the source and reference histograms. A simple background exclusion method is to exclude all pixels whose grayscale values are smaller than the mean grayscale value. ThresholdAtMeanIntensity switches on this simple background exclusion method.

Number of match points governs the number of quantile values to be matched.

The filter assumes that both the source and reference are of the same type and that the input and output image type have the same number of dimension and have scalar pixel types.

version: 0.1.0.$Revision: 19608 $(alpha)

documentation-url: http://wiki.slicer.org/slicerWiki/index.php/Documentation/4.1/Modules/HistogramMatching

contributor: Bill Lorensen (GE)

acknowledgements: This work is part of the National Alliance for Medical Image Computing (NAMIC), funded by the National Institutes of Health through the NIH Roadmap for Medical Research, Grant U54 EB005149.

Inputs:

[Optional]
numberOfHistogramLevels: (an integer (int or long))
        The number of hisogram levels to use
        argument: ``--numberOfHistogramLevels %d``
numberOfMatchPoints: (an integer (int or long))
        The number of match points to use
        argument: ``--numberOfMatchPoints %d``
threshold: (a boolean)
        If on, only pixels above the mean in each volume are thresholded.
        argument: ``--threshold ``
inputVolume: (an existing file name)
        Input volume to be filtered
        argument: ``%s``, position: -3
referenceVolume: (an existing file name)
        Input volume whose histogram will be matched
        argument: ``%s``, position: -2
outputVolume: (a boolean or a file name)
        Output volume. This is the input volume with intensities matched to
        the reference volume.
        argument: ``%s``, position: -1
args: (a unicode string)
        Additional parameters to the command
        argument: ``%s``
environ: (a dictionary with keys which are a bytes or None or a value
          of class 'str' and with values which are a bytes or None or a
          value of class 'str', nipype default value: {})
        Environment variables

Outputs:

outputVolume: (an existing file name)
        Output volume. This is the input volume with intensities matched to
        the reference volume.