mirror of
https://github.com/opencv/opencv.git
synced 2024-11-25 11:40:44 +08:00
fixed trim_weights in boosting (thanks to frankman for the patch; ticket #1231)
This commit is contained in:
parent
216fbc004a
commit
b700521b95
@ -1439,7 +1439,7 @@ CvBoost::trim_weights()
|
||||
for( i = 0; i < count; i++ )
|
||||
{
|
||||
double w = weak_eval->data.db[i];
|
||||
if( sum > w )
|
||||
if( sum <= 0 )
|
||||
break;
|
||||
sum -= w;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user