Threshold the image inplace such that: dst(x,y) = threshold, 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 _ThresholdTrunc(
	TColor threshold
)
Visual Basic (Declaration)
Public Sub _ThresholdTrunc ( _
	threshold As TColor _
)
Visual C++
public:
void _ThresholdTrunc(
	TColor threshold
)

Parameters

threshold
Type: TColor
The threshold value

See Also