Table of Contents

Enum BoostDesc.DescriptorType

Namespace
Emgu.CV.XFeatures2D
Assembly
Emgu.CV.dll

The type of descriptor

public enum BoostDesc.DescriptorType

Fields

Bgm = 100

BGM is the base descriptor where each binary dimension is computed as the output of a single weak learner.

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.

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.

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.

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.

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.