Enum AdaptiveThresholdTypes
Adaptive thresholding algorithms
Namespace: OpenCvSharp
Assembly: OpenCvSharp.dll
Syntax
public enum AdaptiveThresholdTypes
Remarks
Fields
Name | Description |
---|---|
GaussianC | it is a weighted sum (Gaussian) of block_size × block_size pixel neighborhood, subtracted by param1. |
MeanC | It is a mean of block_size × block_size pixel neighborhood, subtracted by param1. |