http://www.emgu.com
Checks that image elements lie between values defined by two images of same size and type

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)

Syntax

C#
public Image<Gray, byte> InRange(
	Image<TColor, TDepth> lower,
	Image<TColor, TDepth> higher
)
Visual Basic
Public Function InRange ( _
	lower As Image(Of TColor, TDepth), _
	higher As Image(Of TColor, TDepth) _
) As Image(Of Gray, Byte)
Visual C++
public:
Image<Gray, unsigned char>^ InRange(
	Image<TColor, TDepth>^ lower, 
	Image<TColor, TDepth>^ higher
)

Parameters

lower
Type: Emgu.CV..::..Image<(Of <(<'TColor, TDepth>)>)>
The lower limit of color value
higher
Type: Emgu.CV..::..Image<(Of <(<'TColor, TDepth>)>)>
The upper limit of color value

Return Value

res[i,j] = 255 if inrange, 0 otherwise

See Also