From 5ae3693567710075937b736b110fa5584bd0e907 Mon Sep 17 00:00:00 2001 From: Pavel Vlasov Date: Thu, 29 Oct 2015 13:21:13 +0300 Subject: [PATCH] Condition update for 8u IPP in GaussianBlur. Bug was fixed in 9.0.1; --- modules/imgproc/src/smooth.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/imgproc/src/smooth.cpp b/modules/imgproc/src/smooth.cpp index 855c432838..cd19f49130 100644 --- a/modules/imgproc/src/smooth.cpp +++ b/modules/imgproc/src/smooth.cpp @@ -1716,7 +1716,7 @@ static bool ipp_GaussianBlur( InputArray _src, OutputArray _dst, Size ksize, IppStatus status = ippStsErr; #if !HAVE_ICV -#if IPP_VERSION_X100 > 901 // Buffer overflow in IPP +#if IPP_VERSION_X100 > 900 // Buffer overflow may happen in IPP 9.0.0 and less if (type == CV_8UC1) IPP_FILTER_GAUSS_C1(8u) else