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