From fe9405e8c0341f67da8d804494d642cf296899c8 Mon Sep 17 00:00:00 2001 From: Skreg <85214856+shyama7004@users.noreply.github.com> Date: Mon, 20 Jan 2025 19:44:27 +0530 Subject: [PATCH] Merge pull request #26806 from shyama7004:fix-typo * fix a small typo * removal of unused variable --- modules/imgproc/src/filter.dispatch.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/imgproc/src/filter.dispatch.cpp b/modules/imgproc/src/filter.dispatch.cpp index b5acbc866d..081614c95d 100644 --- a/modules/imgproc/src/filter.dispatch.cpp +++ b/modules/imgproc/src/filter.dispatch.cpp @@ -592,7 +592,6 @@ static bool ocl_filter2D( InputArray _src, OutputArray _dst, int ddepth, // For smaller filter kernels, there is a special kernel that is more // efficient than the general one. - UMat kernalDataUMat; if (device.isIntel() && (device.type() & ocl::Device::TYPE_GPU) && ((ksize.width < 5 && ksize.height < 5) || (ksize.width == 5 && ksize.height == 5 && cn == 1)))