decreased size of the buffer used in CvBoost::update_weights (ticket #1803)
This commit is contained in:
@@ -1132,7 +1132,7 @@ CvBoost::update_weights( CvBoostTree* tree )
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
if( have_subsample )
|
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);
|
inn_buf.allocate(_buf_size);
|
||||||
uchar* cur_buf_pos = (uchar*)inn_buf;
|
uchar* cur_buf_pos = (uchar*)inn_buf;
|
||||||
|
Reference in New Issue
Block a user