fixing wrong equation in accuracy break rule

This commit is contained in:
StevenPuttemans 2015-04-03 12:54:05 +02:00
parent 7e35f76d06
commit 796c15d3e6

View File

@ -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;