1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 08:13:04 +04:00

imgproc: revert resize changes from PR 16497

This commit is contained in:
Alexander Alekhin
2020-02-17 15:23:59 +03:00
parent d84360e7f3
commit 3a546aa380
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1045,7 +1045,7 @@ public:
{
const int* _tS = (const int*)(S + x_ofs[x]);
int* _tD = (int*)D;
for( int k = 0; k <= pix_size4; k++ )
for( int k = 0; k < pix_size4; k++ )
_tD[k] = _tS[k];
}
}