CvArrayTDepthCheckRange Method |
http://www.emgu.com
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.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic bool CheckRange(
double min,
double max,
ref Point position
)
Public Function CheckRange (
min As Double,
max As Double,
ByRef position As Point
) As Boolean
public:
bool CheckRange(
double min,
double max,
Point% position
)
member CheckRange :
min : float *
max : float *
position : Point byref -> bool
Parameters
- min
- Type: SystemDouble
The inclusive lower boundary of valid values range - max
- Type: SystemDouble
The exclusive upper boundary of valid values range - position
- Type: System.DrawingPoint
This will be filled with the position of the first outlier
Return Value
Type:
BooleanTrue if all values are in range
See Also