decreased size of the buffer used in CvBoost::update_weights (ticket #1803)

This commit is contained in:
Vadim Pisarevsky 2012-06-06 10:10:48 +00:00
parent 517fc5e2d2
commit bc54195199

View File

@ -1132,7 +1132,7 @@ CvBoost::update_weights( CvBoostTree* tree )
else
{
if( have_subsample )
_buf_size += data->buf->step*(sizeof(float)+sizeof(uchar));
_buf_size += data->buf->cols*(sizeof(float)+sizeof(uchar));
}
inn_buf.allocate(_buf_size);
uchar* cur_buf_pos = (uchar*)inn_buf;