Enum AdaptiveThresholdMethod
Specifies the available adaptive threshold methods.
Namespace: OpenCV.Net
Assembly: OpenCV.Net.dll
Syntax
public enum AdaptiveThresholdMethod : int
Fields
Name | Description |
---|---|
GaussianC | Specifies that the threshold value is the weighted sum (i.e. cross-correlation with a Gaussian window) of the pixel neighborhood minus a constant. |
MeanC | Specifies that the threshold value is the mean of the pixel neighborhood minus a constant. |