http://www.emgu.com
Threshold the image such that: dst(x,y) = threshold, if src(x,y)>threshold; src(x,y), otherwise
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public Image<TColor, TDepth> ThresholdTrunc(
TColor threshold
) |
Visual Basic |
---|
Public Function ThresholdTrunc ( _
threshold As TColor _
) As Image(Of TColor, TDepth) |
Visual C++ |
---|
public:
Image<TColor, TDepth>^ ThresholdTrunc(
TColor threshold
) |
Parameters
- threshold
- Type: TColor
The threshold value
Return Value
The image such that: dst(x,y) = threshold, if src(x,y)>threshold; src(x,y), otherwise
See Also