ThresholdType

class cvcuda.ThresholdType

Members:

BINARY : Value above threshold is set to maxval, otherwise set to 0

BINARY_INV : Value above threshold is set to 0, otherwise set to maxval

TRUNC : Value above threshold is set to threshold, otherwise unchanged

TOZERO : Value above threshold is unchanged, otherwise set to 0

TOZERO_INV : Value above threshold is set to 0, otherwise unchanged

OTSU : Use Otsu’s algorithm to automatically determine threshold

TRIANGLE : Use Triangle algorithm to automatically determine threshold

property name