AdaptiveThresholdTypes Enumeration
|
Adaptive thresholding algorithms
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic enum AdaptiveThresholdTypes
Public Enumeration AdaptiveThresholdTypes
public enum class AdaptiveThresholdTypes
type AdaptiveThresholdTypes
OpenCvSharp.AdaptiveThresholdTypes = function();
OpenCvSharp.AdaptiveThresholdTypes.createEnum('OpenCvSharp.AdaptiveThresholdTypes', false);
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