From: Vadim Pisarevsky Date: Wed, 1 Jun 2011 13:44:09 +0000 (+0000) Subject: proper fix for reduce with op=CV_REDUCE_AVG and ddepth==CV_8U X-Git-Tag: accepted/2.0/20130307.220821~2958 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f2f8fc14b0d9ca93aa4966880ca04d081235f3fd;p=profile%2Fivi%2Fopencv.git proper fix for reduce with op=CV_REDUCE_AVG and ddepth==CV_8U --- diff --git a/modules/core/src/matrix.cpp b/modules/core/src/matrix.cpp index 0d0576a..8c3842a 100644 --- a/modules/core/src/matrix.cpp +++ b/modules/core/src/matrix.cpp @@ -1872,8 +1872,10 @@ 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;