http://www.emgu.com
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Finds the minimum and maximum histogram bins and their positions
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public static void cvGetMinMaxHistValue( IntPtr hist, ref float minValue, ref float maxValue, int[] minIdx, int[] maxIdx ) |
Visual Basic |
---|
Public Shared Sub cvGetMinMaxHistValue ( _ hist As IntPtr, _ ByRef minValue As Single, _ ByRef maxValue As Single, _ minIdx As Integer(), _ maxIdx As Integer() _ ) |
Visual C++ |
---|
public: static void cvGetMinMaxHistValue( IntPtr hist, float% minValue, float% maxValue, array<int>^ minIdx, array<int>^ maxIdx ) |
Parameters
- hist
- Type: System..::..IntPtr
Histogram
- minValue
- Type: System..::..Single%
Pointer to the minimum value of the histogram
- maxValue
- Type: System..::..Single%
Pointer to the maximum value of the histogram
- minIdx
- Type: array<System..::..Int32>[]()[][]
Pointer to the array of coordinates for minimum
- maxIdx
- Type: array<System..::..Int32>[]()[][]
Pointer to the array of coordinates for maximum
Remarks
Among several extremums with the same value the ones with minimum index (in lexicographical order).
In case of several maximums or minimums the earliest in lexicographical order extrema locations are returned.