From: Alexander Shishkov Date: Mon, 13 Jun 2011 18:03:33 +0000 (+0000) Subject: fixed problem with norm in opencv_test_core X-Git-Tag: accepted/tizen/6.0/unified/20201030.111113~7025 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4cc167c5d027357b436698b317616075274abb04;p=platform%2Fupstream%2Fopencv.git fixed problem with norm in opencv_test_core --- diff --git a/modules/core/src/stat.cpp b/modules/core/src/stat.cpp index 26d77ef..c77a50d 100644 --- a/modules/core/src/stat.cpp +++ b/modules/core/src/stat.cpp @@ -1164,8 +1164,8 @@ double cv::norm( InputArray _src1, InputArray _src2, int normType, InputArray _m int j, total = (int)it.size, blockSize = total, intSumBlockSize = 0, count = 0; bool blockSum = (normType == NORM_L1 && depth <= CV_16S) || (normType == NORM_L2 && depth <= CV_8S); - int isum = 0; - int *ibuf = (int*)&result; + uint isum = 0; + uint *ibuf = (uint*)&result; size_t esz = 0; if( blockSum )