mirror of
https://github.com/opencv/opencv.git
synced 2026-07-30 15:53:03 +04:00
continuing to debug boost and fix MSVC compile errors
This commit is contained in:
@@ -280,7 +280,6 @@ public:
|
||||
if( calcOOBError && oobError < eps )
|
||||
break;
|
||||
}
|
||||
printf("done!\n");
|
||||
|
||||
if( rparams.calcVarImportance )
|
||||
{
|
||||
|
||||
@@ -452,6 +452,7 @@ int DTreesImpl::addNodeAndTrySplit( int parent, const vector<int>& sidx )
|
||||
|
||||
w->wnodes[nidx].left = addNodeAndTrySplit( nidx, sleft );
|
||||
w->wnodes[nidx].right = addNodeAndTrySplit( nidx, sright );
|
||||
CV_Assert( w->wnodes[nidx].left > 0 && w->wnodes[nidx].right > 0 );
|
||||
}
|
||||
|
||||
return nidx;
|
||||
|
||||
Reference in New Issue
Block a user