diff --git a/modules/imgproc/src/thresh.cpp b/modules/imgproc/src/thresh.cpp index 8eefdf43fc..f041e438dd 100644 --- a/modules/imgproc/src/thresh.cpp +++ b/modules/imgproc/src/thresh.cpp @@ -444,7 +444,7 @@ getThreshVal_Otsu_8u( const Mat& _src ) double mu = 0, scale = 1./(size.width*size.height); for( i = 0; i < N; i++ ) - mu += i*h[i]; + mu += i*(double)h[i]; mu *= scale; double mu1 = 0, q1 = 0;