minor fixes

This commit is contained in:
Maria Dimashova 2010-10-13 16:16:40 +00:00
parent 6b5df89532
commit 1c1485efd3
2 changed files with 3 additions and 3 deletions

View File

@ -1894,7 +1894,7 @@ float CvBoost::calc_error( CvMLData* _data, int type, std::vector<float> *resp )
void CvBoost::write_params( CvFileStorage* fs ) const
{
//CV_FUNCNAME( "CvBoost::write_params" );
CV_FUNCNAME( "CvBoost::write_params" );
__BEGIN__;
@ -1995,7 +1995,7 @@ void CvBoost::read_params( CvFileStorage* fs, CvFileNode* fnode )
void
CvBoost::read( CvFileStorage* fs, CvFileNode* node )
{
CV_FUNCNAME( "CvRTrees::read" );
CV_FUNCNAME( "CvBoost::read" );
__BEGIN__;

View File

@ -141,7 +141,7 @@ static char *fgets_chomp(char *str, int n, FILE *stream)
int CvMLData :: read_csv(const char* filename)
{
const int M = 10000;
const int M = 50000;
const char str_delimiter[3] = { ' ', delimiter, '\0' };
FILE* file = 0;
CvMemStorage* storage;