Interface ILookUpTable

Interface ILookUpTable

Namespace: Aspose.Medical.Dicom.LookUpTables
Assembly: Aspose.Medical.dll (25.11.0)

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

IsValid

Indicates whether the Look-Up Table is valid (true) or not. Read-only System.Boolean.

bool IsValid { get; }

Property Value

bool

Maximum

The maximum output value. Read-only System.Boolean.

double Maximum { get; }

Property Value

double

Minimum

The minimum output value. Read-only System.Double.

double Minimum { get; }

Property Value

double

this[double]

Indexer to transform input value into output value.

double this[double input] { get; }

Property Value

double

Methods

Recalculate()

Recalculates (recalculation is forced) LUT data.

void Recalculate()