ImageTColor, TDepthThresholdToZeroInv Method |
http://www.emgu.com
Threshold the image such that: dst(x,y) = 0, if src(x,y)>threshold; src(x,y), otherwise
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic Image<TColor, TDepth> ThresholdToZeroInv(
TColor threshold
)
Public Function ThresholdToZeroInv (
threshold As TColor
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ ThresholdToZeroInv(
TColor threshold
)
member ThresholdToZeroInv :
threshold : 'TColor -> Image<'TColor, 'TDepth>
Parameters
- threshold
- Type: TColor
The threshold value
Return Value
Type:
ImageTColor,
TDepthThe image such that: dst(x,y) = 0, if src(x,y)>threshold; src(x,y), otherwise
See Also