ImageTColor, TDepth_ThresholdBinaryInv Method |
http://www.emgu.com Threshold the image inplace such that: dst(x,y) = 0, if src(x,y)>threshold; max_value, otherwise
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic void _ThresholdBinaryInv(
TColor threshold,
TColor maxValue
)
Public Sub _ThresholdBinaryInv (
threshold As TColor,
maxValue As TColor
)
public:
void _ThresholdBinaryInv(
TColor threshold,
TColor maxValue
)
member _ThresholdBinaryInv :
threshold : 'TColor *
maxValue : 'TColor -> unit
Parameters
- threshold
- Type: TColor
The threshold value - maxValue
- Type: TColor
The maximum value of the pixel on the result
See Also