Enum NormTypes
Specifies flags for Norm(Arr, Arr, NormTypes, Arr) and Normalize(Arr, Arr, Double, Double, NormTypes, Arr).
Namespace: OpenCV.Net
Assembly: OpenCV.Net.dll
Syntax
public enum NormTypes : int
Fields
| Name | Description |
|---|---|
| C | Specifies the elementwise max norm. |
| Diff | Specifies that a difference norm should be computed. |
| DiffC | Specifies a difference elementwise max norm. |
| DiffL1 | Specifies a difference L1 norm. |
| DiffL2 | Specifies a difference L2 norm. |
| Hamming | Specifies a Hamming distance norm. |
| Hamming2 | Specifies a Hamming2 norm. |
| L1 | Specifies the L1 or Manhattan norm. |
| L2 | Specifies the L2 or Euclidean norm. |
| L2Sqr | Specifies a squared L2 norm. |
| MinMax | Specifies that a range normalization should be computed. |
| NormMask | The bitmask used to extract the norm type. |
| Relative | Specifies that a relative difference norm should be computed. |
| RelativeC | Specifies a relative difference elementwise max norm. |
| RelativeL1 | Specifies a relative difference L1 norm. |
| RelativeL2 | Specifies a relative difference L2 norm. |