From: Ce Zheng Date: Fri, 22 Dec 2017 08:03:12 +0000 (+0800) Subject: Update resize inline comments X-Git-Tag: accepted/tizen/6.0/unified/20201030.111113~211^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=602b08d9c7bc32da2f6ae698869630ac89e33eb0;p=platform%2Fupstream%2Fopencv.git Update resize inline comments Reading through the implementation, I feel this line of comment is not consistent with the actually code, so this is for correcting it. --- diff --git a/modules/imgproc/src/resize.cpp b/modules/imgproc/src/resize.cpp index 14a0377..d025244 100644 --- a/modules/imgproc/src/resize.cpp +++ b/modules/imgproc/src/resize.cpp @@ -3945,7 +3945,7 @@ void resize(int src_type, if( interpolation == INTER_LINEAR && is_area_fast && iscale_x == 2 && iscale_y == 2 ) interpolation = INTER_AREA; - // true "area" interpolation is only implemented for the case (scale_x <= 1 && scale_y <= 1). + // true "area" interpolation is only implemented for the case (scale_x >= 1 && scale_y >= 1). // In other cases it is emulated using some variant of bilinear interpolation if( interpolation == INTER_AREA && scale_x >= 1 && scale_y >= 1 ) {