Click or drag to resize

ThresholdType Fields

http://www.emgu.com

The ThresholdType type exposes the following members.

Fields
  NameDescription
Public fieldStatic memberBinary
value = value > threshold ? max_value : 0
Public fieldStatic memberBinaryInv
value = value > threshold ? 0 : max_value
Public fieldStatic memberMask
Mask
Public fieldStatic memberOtsu
use Otsu algorithm to choose the optimal threshold value; combine the flag with one of the above CV_THRESH_* values
Public fieldStatic memberToZero
value = value > threshold ? value : 0
Public fieldStatic memberToZeroInv
value = value > threshold ? 0 : value
Public fieldStatic memberTriangle
Use Triangle algorithm to choose the optimal threshold value
Public fieldStatic memberTrunc
value = value > threshold ? threshold : value
Public fieldvalue__
Top
See Also