| NormTypes Enumeration |
Type of norm
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax [FlagsAttribute]
public enum NormTypes
<FlagsAttribute>
Public Enumeration NormTypes
[FlagsAttribute]
public enum class NormTypes
[<FlagsAttribute>]
type NormTypes
Members
| Member name | Value | Description |
---|
| INF | 1 | |
| L1 | 2 |
The L1-norm (sum of absolute values) of the array is normalized.
|
| L2 | 4 |
The (Euclidean) L2-norm of the array is normalized.
|
| L2SQR | 5 | |
| Hamming | 6 | |
| Hamming2 | 7 | |
| Relative | 8 | |
| MinMax | 32 |
The array values are scaled and shifted to the specified range.
|
See Also