BoostDescDescriptorType Enumeration |
http://www.emgu.com
The type of descriptor
Namespace:
Emgu.CV.XFeatures2D
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic enum DescriptorType
Public Enumeration DescriptorType
public enum class DescriptorType
Members
| Member name | Value | Description |
---|
| Bgm | 100 |
BGM is the base descriptor where each binary dimension is computed as the output of a single weak learner.
|
| BgmHard | 101 |
BGM_HARD refers to same BGM but use different type of gradient binning. In the BGM_HARD that use ASSIGN_HARD binning type the gradient is assigned to the nearest orientation bin.
|
| BgmBilinear | 102 |
BGM_BILINEAR refers to same BGM but use different type of gradient binning. In the BGM_BILINEAR that use ASSIGN_BILINEAR binning type the gradient is assigned to the two neighbouring bins.
|
| Lbgm | 200 |
LBGM (alias FP-Boost) is the floating point extension where each dimension is computed as a linear combination of the weak learner responses.
|
| Binboost64 | 300 |
BINBOOST and subvariants are the binary extensions of LBGM where each bit is computed as a thresholded linear combination of a set of weak learners.
|
| Binboost128 | 301 |
BINBOOST and subvariants are the binary extensions of LBGM where each bit is computed as a thresholded linear combination of a set of weak learners.
|
| Binboost256 | 302 |
BINBOOST and subvariants are the binary extensions of LBGM where each bit is computed as a thresholded linear combination of a set of weak learners.
|
See Also