Update opengl_interop.cpp

resolves #12307
This commit is contained in:
Suleyman TURKMEN 2018-08-27 01:04:46 +03:00 committed by GitHub
parent 6477262e63
commit bed388bafb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)