1. 23 Aug, 2017 1 commit
    • Pavel Vlasov's avatar
      ICV2017u3 package update; · a57718e1
      Pavel Vlasov authored
      - 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;
      a57718e1
  2. 30 Jun, 2017 1 commit
  3. 26 Jun, 2017 1 commit
  4. 25 May, 2017 1 commit
  5. 24 May, 2017 1 commit
    • mschoeneck's avatar
      Merge pull request #8694 from mschoeneck:Canny · 4a4d94f2
      mschoeneck authored
      Parallelize Canny with custom gradient (#8694)
      
      * New Canny implementation. Restructuring code in parallelCanny class. Align mag buffer and map.
      
      * Fix warnings.
      
      * Missing SIMD check added.
      
      * Replaced local trailingZeros in contours.cpp. Use alignSize in canny.cpp
      
      * Fix warnings in alignSize and allocate just minimum extra columns.
      
      * Fix another warning in map.create.
      
      * Exchange for loop by do loop to avoid double check at the beginning.
      Define extra SIMD CANNY_CHECK to avoid unnecessary continue.
      4a4d94f2
  6. 25 Apr, 2017 1 commit
    • Pavel Vlasov's avatar
      Update for IPP for OpenCV 2017u2 integration; · 11c2ffaf
      Pavel Vlasov authored
      Updated integrations for:
      cv::split
      cv::merge
      cv::insertChannel
      cv::extractChannel
      cv::Mat::convertTo - now with scaled conversions support
      cv::LUT - disabled due to performance issues
      Mat::copyTo
      Mat::setTo
      cv::flip
      cv::copyMakeBorder - currently disabled
      cv::polarToCart
      cv::pow - ipp pow function was removed due to performance issues
      cv::hal::magnitude32f/64f - disabled for <= SSE42, poor performance
      cv::countNonZero
      cv::minMaxIdx
      cv::norm
      cv::canny - new integration. Disabled for threaded;
      cv::cornerHarris
      cv::boxFilter
      cv::bilateralFilter
      cv::integral
      11c2ffaf
  7. 06 Apr, 2017 1 commit
  8. 21 Feb, 2017 1 commit
  9. 14 Dec, 2016 1 commit
  10. 09 Dec, 2016 4 commits
  11. 08 Nov, 2016 1 commit
    • Pavel Vlasov's avatar
      --perf_instrument parameter now has int type and 0, 1, 2 modes (1 - simple… · 349d5ba0
      Pavel Vlasov authored
      --perf_instrument parameter now has int type and 0, 1, 2 modes (1 - simple trees, 2 - expanded trees for functions with same name but different calling address);
      
      Maximum depth limit var was added to the instrumentation structure;
      
      Trace names output console output fix: improper tree formatting could happen;
      Output in case of error was added;
      
      Custom regions improvements;
      
      Improved timing and weight calculation for parallel regions; New TC (threads counter) value to indicate how many different threads accessed particular node;
      
      parallel_for, warnings fixes and ReturnAddress code from Alexander Alekhin;
      349d5ba0
  12. 29 Oct, 2016 1 commit
  13. 03 Oct, 2016 1 commit
  14. 16 Sep, 2016 1 commit
  15. 05 Sep, 2016 1 commit
    • mschoeneck's avatar
      Improve canny (#7227) · 9e61a28b
      mschoeneck authored
      * Improve Canny by using _mm_movemask_epi8 to find next pixel magnitude greater than lower threshold. Added parallelized finalPass to Canny with variable gradients. Little changes in finalPass.
      
      * Some things fixed
      9e61a28b
  16. 19 Aug, 2016 1 commit
  17. 05 Aug, 2016 1 commit
    • mschoeneck's avatar
      Merge pull request #6958 from mschoeneck:Common-Canny-parallelization · 5f30a0a0
      mschoeneck authored
      * Common Canny parallelization added. TBB and single thread code removed. Final pass vectorized with SSE2 intrinsics.
      
      * wrong #ifdef replaced with #if
      
      * Merged to actual Canny version
      
      * Merged common parallelized Canny with actual Canny implementation
      
      * Remove 'Mutex *mutex' and pass 'Mutex mutex' from outside to parallelCanny
      
      * Replaced extern Mutex with intern mutable Mutex.
      5f30a0a0
  18. 19 Jul, 2016 2 commits
  19. 05 Jun, 2016 1 commit
  20. 28 Mar, 2016 1 commit
    • themightyoarfish's avatar
      Error message for wrong kernel size was insufficient. · 68d97502
      themightyoarfish authored
      When setting a wrong kernel size, the error message only tells the user that it
      must be odd, however the conditions for rejection include values > 7 which must
      be communicated. Without that, the message would be incorrect and confusing if
      the user is unaware that only values 3, 5, 7 are accepted.
      68d97502
  21. 23 Nov, 2015 1 commit
  22. 11 Nov, 2015 1 commit
  23. 20 Oct, 2015 1 commit
  24. 29 Sep, 2015 1 commit
    • Pavel Vlasov's avatar
      Enables support of IPP 9.0.0; · 62854dcc
      Pavel Vlasov authored
      HAVE_IPP_ICV_ONLY will be undefined if OpenCV was linked against ICV packet from IPP9 or greater. ICV9+ packets will be aligned with IPP in OpenCV APIs
      This will ease code management between IPP and ICV
      62854dcc
  25. 25 Sep, 2015 2 commits
  26. 27 Feb, 2015 1 commit
  27. 26 Feb, 2015 1 commit
  28. 12 Jan, 2015 1 commit
  29. 07 Jan, 2015 1 commit
  30. 12 Nov, 2014 1 commit
  31. 06 Nov, 2014 1 commit
  32. 15 Oct, 2014 1 commit
    • Pavel Vlasov's avatar
      Implementation detector and selector for IPP and OpenCL; · 45958eaa
      Pavel Vlasov authored
      IPP can be switched on and off on runtime;
      
      Optional implementation collector was added (switched off by default in CMake). Gathers data of implementation used in functions and report this info through performance TS;
      
      TS modifications for implementations control;
      45958eaa
  33. 26 Sep, 2014 3 commits