DAISYNormalizationType Enumeration |
http://www.emgu.com
Normalization type
Namespace:
Emgu.CV.XFeatures2D
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.3.0.2824 (3.3.0.2824)
Syntaxpublic enum NormalizationType
Public Enumeration NormalizationType
public enum class NormalizationType
Members
| Member name | Value | Description |
---|
| None | 100 |
Will not do any normalization (default)
|
| Partial | 101 |
Histograms are normalized independently for L2 norm equal to 1.0
|
| Full | 102 |
Descriptors are normalized for L2 norm equal to 1.0
|
| SIFT | 103 |
Descriptors are normalized for L2 norm equal to 1.0 but no individual one is bigger than 0.154 as in SIFT
|
See Also