Merge pull request #3901 from StevenPuttemans:add_breakrule_cascade_accuracy

pull/3903/head
Vadim Pisarevsky 10 years ago
commit be9c6bdd67
  1. 2
      apps/traincascade/cascadeclassifier.cpp

@ -218,7 +218,7 @@ bool CvCascadeClassifier::train( const string _cascadeDirName,
"Branch training terminated." << endl;
break;
}
if( (tempLeafFARate <= acceptanceRatioBreakValue) && (acceptanceRatioBreakValue < 0) ){
if( (tempLeafFARate <= acceptanceRatioBreakValue) && (acceptanceRatioBreakValue >= 0) ){
cout << "The required acceptanceRatio for the model has been reached to avoid overfitting of trainingdata. "
"Branch training terminated." << endl;
break;

Loading…
Cancel
Save