removed ddepth from matrix (after Vadim's commit, it generates problem with core and ml tests)

returned the new floating-point number formatting
This commit is contained in:
Alexander Shishkov
2011-05-31 21:14:42 +00:00
parent 035fd0019b
commit 80dfdf8ff7
2 changed files with 3 additions and 3 deletions

View File

@@ -1873,7 +1873,7 @@ void cv::reduce(const InputArray& _src, OutputArray _dst, int dim, int op, int d
op = CV_REDUCE_SUM;
if( sdepth < CV_32S && ddepth < CV_32S )
temp.create(dst.rows, dst.cols, CV_32SC(cn));
ddepth = CV_32S;
//ddepth = CV_32S;
}
ReduceFunc func = 0;