ImageGear .NET v25.2 - Updated
ImageGear.Formats.Dicom Assembly / ImageGear.Formats.DICOM Namespace / ImGearDICOMDisplaySettings Class / UpdateDisplaySummaryLUT Method
DIB for which the DisplaySummaryLUT is to be built.
Example




In This Topic
    UpdateDisplaySummaryLUT Method (ImGearDICOMDisplaySettings)
    In This Topic
    Updates DisplaySummaryLUT with current settings of the ImGearDICOMDisplaySettings class members.
    Syntax
    'Declaration
     
    Public Sub UpdateDisplaySummaryLUT( _
       ByVal dib As ImGearDIB _
    ) 
    'Usage
     
    Dim instance As ImGearDICOMDisplaySettings
    Dim dib As ImGearDIB
     
    instance.UpdateDisplaySummaryLUT(dib)
    public void UpdateDisplaySummaryLUT( 
       ImGearDIB dib
    )
    public: void UpdateDisplaySummaryLUT( 
       ImGearDIB* dib
    ) 
    public:
    void UpdateDisplaySummaryLUT( 
       ImGearDIB^ dib
    ) 

    Parameters

    dib
    DIB for which the DisplaySummaryLUT is to be built.
    Remarks
    This method updates DisplaySummaryLUT property based on the transforms that are present in the ImGearDICOMDisplaySettings class object.

    Transforms are applied in the following order:

    Modality

    VOIInvertedPresentation LUTStandard Display LUT

    Resulting DisplaySummaryLUT property has input depth equal to image bit depth and output depth equal to grayscale depth of the display device (8).

    Example
    ImGearRasterPage rasterPage = (ImGearRasterPage)igPage;
    rasterPage.DICOMDisplaySettings.UpdateDisplaySummaryLUT(rasterPage.DIB);
    Dim rasterPage As ImGearRasterPage = igPage
    rasterPage.DICOMDisplaySettings.UpdateDisplaySummaryLUT(rasterPage.DIB)
    See Also