DicomObjects.NET.8.48 Documentation
DicomObjects.Delegates Namespace / CustomPETWindowingFunctionDelegate Delegate
The minimum pixel value currently known for the PET image
The maximum pixel value currently known for the PET image
Returns the calculated Window Width to use for PET display
Returns the calculated Window Level to use for PET display

In This Topic
    CustomPETWindowingFunctionDelegate Delegate
    In This Topic
    Customer-defined PET VOI windowing function.
    Syntax
    'Declaration
     
    
    Public Delegate Sub CustomPETWindowingFunctionDelegate( _
       ByVal min As System.Single, _
       ByVal max As System.Single, _
       ByRef ww As System.Single, _
       ByRef wl As System.Single _
    ) 
    public delegate void CustomPETWindowingFunctionDelegate( 
       System.float min,
       System.float max,
       out System.float ww,
       out System.float wl
    )

    Parameters

    min
    The minimum pixel value currently known for the PET image
    max
    The maximum pixel value currently known for the PET image
    ww
    Returns the calculated Window Width to use for PET display
    wl
    Returns the calculated Window Level to use for PET display
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also