diff --git a/samples/opengl/opengl_interop.cpp b/samples/opengl/opengl_interop.cpp index 1d606f13fe..87f1f95939 100644 --- a/samples/opengl/opengl_interop.cpp +++ b/samples/opengl/opengl_interop.cpp @@ -360,7 +360,7 @@ protected: if (m_demo_processing) { // blur texture image with OpenCV on CPU - cv::blur(m, m, cv::Size(15, 15), cv::Point(-7, -7)); + cv::blur(m, m, cv::Size(15, 15)); } if (do_buffer) @@ -385,7 +385,7 @@ protected: if (m_demo_processing) { // blur texture image with OpenCV on GPU with OpenCL - cv::blur(u, u, cv::Size(15, 15), cv::Point(-7, -7)); + cv::blur(u, u, cv::Size(15, 15)); } if (do_buffer)