http://www.emgu.com
The match distance type
Namespace: Emgu.CV.Features2DAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
SyntaxPublic Enumeration DistanceType
public enum class DistanceType
Members
| Member name | Value | Description |
---|
| Inf | 1 | |
| L1 | 2 |
Manhattan distance (city block distance)
|
| L2 | 4 |
Squared Euclidean distance
|
| L2Sqr | 5 |
Euclidean distance
|
| Hamming | 6 |
Hamming distance functor - counts the bit differences between two strings - useful for the Brief descriptor,
bit count of A exclusive XOR'ed with B.
|
| Hamming2 | 7 |
Hamming distance functor - counts the bit differences between two strings - useful for the Brief descriptor,
bit count of A exclusive XOR'ed with B.
|
See Also