DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomImage Class / PresentationLUT Property






In This Topic
    PresentationLUT Property
    In This Topic
    Enables or disables the Presentation Lookup Table to be used in the DicomImage
    Syntax
    'Declaration
     
    
    Public Property PresentationLUT As System.Short
    'Usage
     
    
    Dim instance As DicomImage
    Dim value As System.Short
     
    instance.PresentationLUT = value
     
    value = instance.PresentationLUT
    public System.short PresentationLUT {get; set;}
    public read-write property PresentationLUT: System.Int16; 
    public function get,set PresentationLUT : System.short
    public: __property System.short get_PresentationLUT();
    public: __property void set_PresentationLUT( 
       System.short value
    );
    public:
    property System.short PresentationLUT {
       System.short get();
       void set (    System.short value);
    }

    Property Value

    The index of the Presentation LUT to use
    Remarks

    DICOM allows multiple VOI and presentation Lookup Tables (LUTs) in images, and the user may select whichever they require. These properties provide that choice, and the value 0 may be used to disable a particular type of LUT. Only one Modality LUT is allowed, so the only meaningful values for ModalityLUT are 0 and 1, but the other two may range from 0 to the number of such LUTs in the image. Value beyond the available range are treated as 0.

    The default values are all 1, indicating that the first VOI Lookup Table, if present, should be used.

    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also