ImageTColor, TDepthThresholdBinaryInv Method |
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: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic Image<TColor, TDepth> ThresholdBinaryInv(
TColor threshold,
TColor maxValue
)
Public Function ThresholdBinaryInv (
threshold As TColor,
maxValue As TColor
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ ThresholdBinaryInv(
TColor threshold,
TColor maxValue
)
member ThresholdBinaryInv :
threshold : 'TColor *
maxValue : 'TColor -> Image<'TColor, 'TDepth>
Parameters
- threshold
- Type: TColor
The threshold value - maxValue
- Type: TColor
The maximum value of the pixel on the result
Return Value
Type:
ImageTColor,
TDepthThe image such that: dst(x,y) = 0, if src(x,y)>threshold; max_value, otherwise
See Also