Threshold the image inplace such that: dst(x,y) = 0, if src(x,y)>threshold; src(x,y), otherwise

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

Syntax

C#
public void _ThresholdToZeroInv(
	TColor threshold
)
Visual Basic (Declaration)
Public Sub _ThresholdToZeroInv ( _
	threshold As TColor _
)
Visual C++
public:
void _ThresholdToZeroInv(
	TColor threshold
)

Parameters

threshold
Type: TColor
The threshold value

See Also