Update opengl_interop.cpp

resolves #12307
pull/12314/head
Suleyman TURKMEN 7 years ago committed by GitHub
parent 6477262e63
commit bed388bafb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      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)

Loading…
Cancel
Save