CvArrCheckArray Method (CheckArrFlag, Double, Double) OpenCvSharp Class Library
Checks every element of input array for invalid values

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public bool CheckArray(
	CheckArrFlag flags,
	double minVal,
	double maxVal
)

Parameters

flags
Type: OpenCvSharpCheckArrFlag
The operation flags
minVal
Type: SystemDouble
The inclusive lower boundary of valid values range. It is used only if CV_CHECK_RANGE is set.
maxVal
Type: SystemDouble
The exclusive upper boundary of valid values range. It is used only if CV_CHECK_RANGE is set.

Return Value

Type: Boolean
returns nonzero if the check succeeded, i.e. all elements are valid and within the range, and zero otherwise.
See Also

Reference