mirror of
https://github.com/opencv/opencv.git
synced 2026-07-30 07:43:03 +04:00
significantly reduced OpenCV binary size by disabling IPP in some funcs (#13085)
* significantly reduced OpenCV binary size by disabling IPP calls in some OpenCV functions: Sobel, Scharr, medianBlur, GaussianBlur, filter2D, mean, meanStdDev, norm, sum, minMaxIdx, sort. * re-enable IPP in norm, since it's much faster (without adding too much space overhead)
This commit is contained in:
@@ -8,6 +8,11 @@
|
||||
#include "opencl_kernels_core.hpp"
|
||||
#include "precomp.hpp"
|
||||
|
||||
#undef HAVE_IPP
|
||||
#undef CV_IPP_RUN_FAST
|
||||
#define CV_IPP_RUN_FAST(f, ...)
|
||||
#undef CV_IPP_RUN
|
||||
#define CV_IPP_RUN(c, f, ...)
|
||||
|
||||
/*************************************************************************************************\
|
||||
Matrix Operations
|
||||
|
||||
Reference in New Issue
Block a user