| AdaptiveThresholdTypes Enumeration |
Adaptive thresholding algorithms
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public enum AdaptiveThresholdTypes
Public Enumeration AdaptiveThresholdTypes
public enum class AdaptiveThresholdTypes
type AdaptiveThresholdTypes
Members
| Member name | Value | Description |
---|
| MeanC | 0 |
It is a mean of block_size × block_size pixel neighborhood, subtracted by param1.
|
| GaussianC | 1 |
it is a weighted sum (Gaussian) of block_size × block_size pixel neighborhood, subtracted by param1.
|
See Also