diff --git a/modules/imgproc/src/imgwarp.cpp b/modules/imgproc/src/imgwarp.cpp index 3a5f415ce2484018929d76383c76ac1934af84f8..910a63541eb6ef033149a1ff4f041d1ffdbe1c2b 100644 --- a/modules/imgproc/src/imgwarp.cpp +++ b/modules/imgproc/src/imgwarp.cpp @@ -1272,11 +1272,14 @@ static void resizeArea_( const Mat& src, Mat& dst, const DecimateAlpha* xofs, in WT beta1 = 1 - beta; T* D = (T*)(dst.data + dst.step*cur_dy); if( fabs(beta) < 1e-3 ) + { + if(cur_dy >= dsize.height) return; for( dx = 0; dx < dsize.width; dx++ ) { D[dx] = saturate_cast((sum[dx] + buf[dx]) / min(scale_y, src.cols - cur_dy * scale_y)); sum[dx] = buf[dx] = 0; } + } else for( dx = 0; dx < dsize.width; dx++ ) {