0
0
mirror of https://github.com/opencv/opencv.git synced 2026-01-18 17:21:42 +01:00

Merge pull request #28008 from penghuiho:fix-moments-ocl

Unblocked OpenCL implementation of cv::moments
This commit is contained in:
Alexander Smorkalov
2025-11-13 18:19:41 +03:00
committed by GitHub

View File

@@ -401,7 +401,7 @@ static bool ocl_moments( InputArray _src, Moments& m, bool binary)
const int TILE_SIZE = 32;
const int K = 10;
Size sz = _src.getSz();
Size sz = _src.size();
int xtiles = divUp(sz.width, TILE_SIZE);
int ytiles = divUp(sz.height, TILE_SIZE);
int ntiles = xtiles*ytiles;