http://www.emgu.com Threshold the image inplace 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 void _ThresholdBinaryInv(
TColor threshold,
TColor maxValue
) |
Visual Basic |
---|
Public Sub _ThresholdBinaryInv ( _
threshold As TColor, _
maxValue As TColor _
) |
Visual C++ |
---|
public:
void _ThresholdBinaryInv(
TColor threshold,
TColor maxValue
) |
Parameters
- threshold
- Type: TColor
The threshold value
- maxValue
- Type: TColor
The maximum value of the pixel on the result
See Also