http://www.emgu.com
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Check that every array element is neither NaN nor +- inf. The functions also check that each value
is between min and max. in the case of multi-channel arrays each channel is processed
independently. If some values are out of range, position of the first outlier is stored in pos,
and then the functions return false.
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public bool CheckRange( double min, double max, ref Point position ) |
Visual Basic |
---|
Public Function CheckRange ( _ min As Double, _ max As Double, _ ByRef position As Point _ ) As Boolean |
Visual C++ |
---|
public: bool CheckRange( double min, double max, Point% position ) |
Parameters
- min
- Type: System..::..Double
The inclusive lower boundary of valid values range
- max
- Type: System..::..Double
The exclusive upper boundary of valid values range
- position
- Type: System.Drawing..::..Point%
This will be filled with the position of the first outlier