ILookUpTable

ILookUpTable interface

Represents a Look-Up Table (LUT). LUT specification https://dicom.nema.org/medical/dicom/current/output/chtml/part03/sect_C.11.html. LUT is a mapping function that defines how to convert pixel values in a DICOM image from one color space to another. It’s a way of adjusting the color appearance of medical images (X-rays, MRIs, and CT scans).

public interface ILookUpTable

Properties

NameDescription
IsValid { get; }Indicates whether the Look-Up Table is valid (true) or not. Read-only Boolean.
Item { get; }Indexer to transform input value into output value.
Maximum { get; }The maximum output value. Read-only Boolean.
Minimum { get; }The minimum output value. Read-only Double.

Methods

NameDescription
Recalculate()Recalculates (recalculation is forced) LUT data.

See Also