DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomImage Class / GetMinAndMax Method / GetMinAndMax(Single,Single,Single,Boolean) Method
The minimum value found
The maximum value found
Proportion of extreme values to ignore (in range 0.0 to 1.0)
Whether to apply scaling/modality lookup table transformation
Example

In This Topic
    GetMinAndMax(Single,Single,Single,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 Scale As System.Boolean _
    ) 
    public void GetMinAndMax( 
       out System.float Min,
       out System.float Max,
       System.float Centile,
       System.bool Scale
    )

    Parameters

    Min
    The minimum value found
    Max
    The maximum value found
    Centile
    Proportion of extreme values to ignore (in range 0.0 to 1.0)
    Scale
    Whether to apply scaling/modality lookup table transformation
    Remarks

    Pixel padding values are ignored

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

    If Scale 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.
    Example
    DicomImage image = new DicomImage("your_dicom_image.dcm");
    float minValue, maxValue;
    image.GetMinAndMax(out minValue, out maxValue, 0.05F, true);
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also