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.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)
Syntax
C# | Visual Basic | Visual C++ |