mirror of
https://github.com/opencv/opencv.git
synced 2026-07-30 15:53:03 +04:00
ICV2017u3 package update;
- Optimizations set change. Now IPP integrations will provide code for SSE42, AVX2 and AVX512 (SKX) CPUs only. For HW below SSE42 IPP code is disabled. - Performance regressions fixes for IPP code paths; - cv::boxFilter integration improvement; - cv::filter2D integration improvement;
This commit is contained in:
@@ -571,6 +571,12 @@ static bool ipp_moments(Mat &src, Moments &m )
|
||||
#if IPP_VERSION_X100 >= 900
|
||||
CV_INSTRUMENT_REGION_IPP()
|
||||
|
||||
#if IPP_VERSION_X100 < 201801
|
||||
// Degradations for CV_8UC1
|
||||
if(src.type() == CV_8UC1)
|
||||
return false;
|
||||
#endif
|
||||
|
||||
IppiSize roi = { src.cols, src.rows };
|
||||
IppiPoint point = { 0, 0 };
|
||||
int type = src.type();
|
||||
|
||||
Reference in New Issue
Block a user