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

pull/2/head
Vadim Pisarevsky 13 years ago
parent 517fc5e2d2
commit bc54195199
  1. 2
      modules/ml/src/boost.cpp

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

Loading…
Cancel
Save