DicomObjects.NET.V8
DicomObjects Namespace / DicomImage Class / VoiLUT Property



In This Topic
    VoiLUT Property
    In This Topic
    The VOI Lookup Table to be used to display the DicomImage
    Syntax
    'Declaration
     
    Public Property VoiLUT As Short
    'Usage
     
    Dim instance As DicomImage
    Dim value As Short
     
    instance.VoiLUT = value
     
    value = instance.VoiLUT
    public short VoiLUT {get; set;}
    public:
    property short VoiLUT {
       short get();
       void set (    short value);
    }

    Property Value

    The index of the VOI LUT to use for display
    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 the LUT. The value may range from 0 (disabling the LUT) to the number of VOI LUTs in the image. Values beyond the available range are treated as 0.

    The value is initially set to the DefaultVoiLUT property, which if itself having the default value of 1, indicates that the first VOI Lookup Table, if present, should be used.

    See VoiLUTInUse for a mean to tell which VOILUT is actually being used

    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also