Click or drag to resize

ImageTColor, TDepthThresholdTrunc Method

http://www.emgu.com
Threshold the image such that: dst(x,y) = threshold, if src(x,y)>threshold; src(x,y), otherwise

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public Image<TColor, TDepth> ThresholdTrunc(
	TColor threshold
)

Parameters

threshold
Type: TColor
The threshold value

Return Value

Type: ImageTColor, TDepth
The image such that: dst(x,y) = threshold, if src(x,y)>threshold; src(x,y), otherwise
See Also