Click or drag to resize

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)
Syntax
public bool CheckRange(
	double min,
	double max,
	ref Point position
)

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: Boolean
True if all values are in range
See Also