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 ILookUpTableProperties
IsValid
Indicates whether the Look-Up Table is valid (true) or not. Read-only System.Boolean.
bool IsValid { get; }Property Value
Maximum
The maximum output value. Read-only System.Boolean.
double Maximum { get; }Property Value
Minimum
The minimum output value. Read-only System.Double.
double Minimum { get; }Property Value
this[double]
Indexer to transform input value into output value.
double this[double input] { get; }Property Value
Methods
Recalculate()
Recalculates (recalculation is forced) LUT data.
void Recalculate()