Enum AdaptiveThresholdTypes
- Namespace
- OpenCvSharp
- Assembly
- OpenCvSharp.dll
Adaptive thresholding algorithms
[SuppressMessage("Microsoft.Design", "CA1717: Only FlagsAttribute enums should have plural names")]
public enum AdaptiveThresholdTypes
Fields
GaussianC = 1it is a weighted sum (Gaussian) of block_size × block_size pixel neighborhood, subtracted by param1.
MeanC = 0It is a mean of block_size × block_size pixel neighborhood, subtracted by param1.