returned maxDepth argument

pull/13383/head
Maria Dimashova 14 years ago
parent 62cb71092c
commit d3ce471cd7
  1. 4
      modules/traincascade/boost.cpp

@ -110,7 +110,7 @@ void CvCascadeBoostParams::printAttrs() const
cout << "minHitRate: " << minHitRate << endl;
cout << "maxFalseAlarmRate: " << maxFalseAlarm << endl;
cout << "weightTrimRate: " << weight_trim_rate << endl;
cout << "maxTreeDepth: " << max_depth << endl;
cout << "maxDepth: " << max_depth << endl;
cout << "maxWeakCount: " << weak_count << endl;
}
@ -139,7 +139,7 @@ bool CvCascadeBoostParams::scanAttr( const String prmName, const String val)
{
weight_trim_rate = (float) atof( val.c_str() );
}
else if( !prmName.compare( "-maxTreeDepth" ) )
else if( !prmName.compare( "-maxDepth" ) )
{
max_depth = atoi( val.c_str() );
}

Loading…
Cancel
Save