http://www.emgu.com Threshold the image such that: dst(x,y) = src(x,y), if src(x,y)>threshold; 0, 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> ThresholdToZero(
TColor threshold
) |
Visual Basic |
---|
Public Function ThresholdToZero ( _
threshold As TColor _
) As Image(Of TColor, TDepth) |
Visual C++ |
---|
public:
Image<TColor, TDepth>^ ThresholdToZero(
TColor threshold
) |
Parameters
- threshold
- Type: TColor
The threshold value
Return Value
dst(x,y) = src(x,y), if src(x,y)>threshold; 0, otherwise
See Also