http://www.emgu.com
The match distance type
Namespace: Emgu.CV.Features2DAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
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