DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomImage Class / GetMinAndMax Method / GetMinAndMax(Single,Single,Single,Boolean,Boolean) Method
The minimum value found
The maximum value found
Centile as Float
Whether to apply modality lookup table transformation
Whether to apply modality rescale slope and offset transformations






In This Topic
    GetMinAndMax(Single,Single,Single,Boolean,Boolean) Method
    In This Topic
    Find the maximum and minimum pixel data values in the pixel data
    Syntax
    'Declaration
     
    
    Public Overloads Sub GetMinAndMax( _
       ByRef Min As System.Single, _
       ByRef Max As System.Single, _
       ByVal Centile As System.Single, _
       ByVal ScaleLUT As System.Boolean, _
       ByVal ScaleRescale As System.Boolean _
    ) 
    'Usage
     
    
    Dim instance As DicomImage
    Dim Min As System.Single
    Dim Max As System.Single
    Dim Centile As System.Single
    Dim ScaleLUT As System.Boolean
    Dim ScaleRescale As System.Boolean
     
    instance.GetMinAndMax(Min, Max, Centile, ScaleLUT, ScaleRescale)
    public void GetMinAndMax( 
       out System.float Min,
       out System.float Max,
       System.float Centile,
       System.bool ScaleLUT,
       System.bool ScaleRescale
    )
    public procedure GetMinAndMax( 
       Out  Min: System.Single;
       Out  Max: System.Single;
        Centile: System.Single;
        ScaleLUT: System.Boolean;
        ScaleRescale: System.Boolean
    ); 
    public function GetMinAndMax( 
       Min : System.float,
       Max : System.float,
       Centile : System.float,
       ScaleLUT : System.boolean,
       ScaleRescale : System.boolean
    );
    public: void GetMinAndMax( 
       [PARAMFLAG::Out] System.float Min,
       [PARAMFLAG::Out] System.float Max,
       System.float Centile,
       System.bool ScaleLUT,
       System.bool ScaleRescale
    ) 
    public:
    void GetMinAndMax( 
       [Out] System.float Min,
       [Out] System.float Max,
       System.float Centile,
       System.bool ScaleLUT,
       System.bool ScaleRescale
    ) 

    Parameters

    Min
    The minimum value found
    Max
    The maximum value found
    Centile
    Centile as Float
    ScaleLUT
    Whether to apply modality lookup table transformation
    ScaleRescale
    Whether to apply modality rescale slope and offset transformations
    Remarks

    Pixel padding values are ignored

    If ScaleLUT is false, then the values returned are "raw" values before application of rescaling or modality lookup tables

    If ScaleLUT is true, then the values returned are transformed using the modality slope and intercept or modality lookup tables as appropriate to the image

    If it is necessray to use separate control for the 2 scaling methods, then the GetMinAndMax(Single,Single,Single,Boolean,Boolean) override may be used instead.
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also