http://www.emgu.com
The match distance type
Namespace:
Emgu.CV.Features2D
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax[FlagsAttribute]
public enum DistanceType
<FlagsAttribute>
Public Enumeration DistanceType
[FlagsAttribute]
public enum class DistanceType
[<FlagsAttribute>]
type 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.
|
| TypeMask | 7 |
bit-mask which can be used to separate norm type from norm flags
|
| Relative | 8 |
Relative, flag
|
| MinMax | 32 |
MinMax, flag
|
See Also