Performs range check for every element of the input array:
dst(I)=lower(I)_0 <= src(I)_0 < upper(I)_0
For single-channel arrays,
dst(I)=lower(I)_0 <= src(I)_0 < upper(I)_0 &&
lower(I)_1 <= src(I)_1 < upper(I)_1
For two-channel arrays etc.
dst(I) is set to 0xff (all '1'-bits) if src(I) is within the range and 0 otherwise. All the arrays must have the same type, except the destination, and the same size (or ROI size)
Namespace:
Emgu.CV
Assembly:
Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
Visual Basic (Declaration) |
---|
Public Shared Sub cvInRange ( _
src As IntPtr, _
lower As IntPtr, _
upper As IntPtr, _
dst As IntPtr _
) |
See Also