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