Home
last modified time | relevance | path

Searched refs:sumW (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/apps/traincascade/
Dboost.cpp1433 double sumW = 0.; in update_weights() local
1560 sumW += w; in update_weights()
1564 if( sumW != 0 ) in update_weights()
1565 err /= sumW; in update_weights()
1569 sumW = 0; in update_weights()
1574 sumW += w; in update_weights()
1594 sumW += w; in update_weights()
1628 sumW += w; in update_weights()
1657 sumW += w; in update_weights()
1663 if( sumW > FLT_EPSILON ) in update_weights()
[all …]
/external/opencv3/modules/objdetect/src/
Dcascadedetect.cpp272 double sumW=0; in getResultWeight() local
287 sumW+=(weightsV[i])*std::exp(-(aPt.dot(aPt))/2)/std::sqrt(sPt.dot(Point3d(1,1,1))); in getResultWeight()
289 return sumW; in getResultWeight()