Click or drag to resize

ThresholdType Enumeration

http://www.emgu.com
Types of thresholding

Namespace:  Emgu.CV.CvEnum
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public enum ThresholdType
Members
  Member nameValueDescription
Binary0 value = value > threshold ? max_value : 0
BinaryInv1 value = value > threshold ? 0 : max_value
Trunc2 value = value > threshold ? threshold : value
ToZero3 value = value > threshold ? value : 0
ToZeroInv4 value = value > threshold ? 0 : value
Mask7 Mask
Otsu8 use Otsu algorithm to choose the optimal threshold value; combine the flag with one of the above CV_THRESH_* values
Triangle16 Use Triangle algorithm to choose the optimal threshold value
See Also