Class PaletteColorLookUpTable
Namespace: Aspose.Medical.Dicom.LookUpTables
Assembly: Aspose.Medical.dll (25.11.0)
Palette color LUT, used to map grayscale images using custom PALETTE COLOR table. See https://dicom.nema.org/medical/dicom/current/output/chtml/part03/sect_c.7.9.html .
public sealed class PaletteColorLookUpTable : ILookUpTableInheritance
object ← PaletteColorLookUpTable
Implements
Inherited Members
object.GetType() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Constructors
PaletteColorLookUpTable(PixelData)
Palette color LUT, used to map grayscale images using custom PALETTE COLOR table. See https://dicom.nema.org/medical/dicom/current/output/chtml/part03/sect_c.7.9.html .
public PaletteColorLookUpTable(PixelData pixelData)Parameters
pixelData PixelData
Properties
IsValid
Indicates whether the Look-Up Table is valid (true) or not. Read-only System.Boolean.
public bool IsValid { get; }Property Value
Maximum
The maximum output value. Read-only System.Boolean.
public double Maximum { get; }Property Value
Minimum
The minimum output value. Read-only System.Double.
public double Minimum { get; }Property Value
this[double]
Indexer to transform input value into output value.
public double this[double value] { get; }Property Value
Methods
Recalculate()
Recalculates (recalculation is forced) LUT data.
public void Recalculate()