Home
last modified time | relevance | path

Searched refs:featSize (Results 1 – 3 of 3) sorted by relevance

/external/opencv3/apps/traincascade/
Dfeatures.cpp32 CvFeatureParams::CvFeatureParams() : maxCatCount( 0 ), featSize( 1 ) in CvFeatureParams()
40 featSize = fp.featSize; in init()
46 fs << CC_FEATURE_SIZE << featSize; in write()
54 featSize = node[CC_FEATURE_SIZE]; in read()
55 return ( maxCatCount >= 0 && featSize >= 1 ); in read()
Dtraincascade_features.h72 …int featSize; // 1 in case of simple features (HAAR, LBP) and N_BINS(9)*N_CELLS(4) in case of Dala… variable
88 int getFeatureSize() const { return featureParams->featSize; } in getFeatureSize()
DHOGfeatures.cpp14 featSize = N_BINS * N_CELLS; in CvHOGFeatureParams()