1. 01 Jun, 2017 1 commit
  2. 31 May, 2017 1 commit
  3. 25 May, 2017 1 commit
  4. 23 May, 2017 1 commit
  5. 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
  6. 20 Apr, 2017 1 commit
  7. 11 Apr, 2017 2 commits
  8. 06 Apr, 2017 1 commit
  9. 28 Feb, 2017 1 commit
    • Jejos's avatar
      fix medianBlur accessviolation · 5169c799
      Jejos authored
      medianBlur called with "empty" source and ksize >= 7 crashes application with accessviolation. With this extra assert this is avoided and the application may normally catch the thrown exception.
      5169c799
  10. 21 Feb, 2017 1 commit
  11. 21 Dec, 2016 1 commit
    • Vitaly Tuzov's avatar
      Merge pull request #7802 from terfendail:ovxhal_wrappers_migration · be7d060e
      Vitaly Tuzov authored
      * OpenVX HAL updated to use generic OpenVX wrappers
      
      * vxErr class from OpenVX HAL replaced with ivx::WrapperError
      
      * reduced usage of vxImage class from OpenVX HAL replaced with ivx::Image
      
      * vxImage class rewritten as ivx::Image subclass that calls swapHandle prior release
      
      * Fix OpenVX HAL build
      
      * Fix for review comments
      be7d060e
  12. 14 Dec, 2016 1 commit
  13. 09 Dec, 2016 3 commits
  14. 06 Dec, 2016 1 commit
  15. 02 Dec, 2016 1 commit
  16. 30 Nov, 2016 1 commit
  17. 29 Nov, 2016 1 commit
  18. 08 Nov, 2016 2 commits
    • 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
    • Li Peng's avatar
      gaussian blur ocl kernel optimization · 8f63f51e
      Li Peng authored
      This ocl kernel is for 3x3 kernel size and CV_8UC1 format
      It is 115% ~ 300% faster than current ocl path in perf test
      
      python ./modules/ts/misc/run.py -t imgproc --gtest_filter=OCL_GaussianBlurFixture*
      Signed-off-by: 's avatarLi Peng <peng.li@intel.com>
      8f63f51e
  19. 27 Oct, 2016 1 commit
  20. 26 Oct, 2016 1 commit
  21. 22 Sep, 2016 1 commit
  22. 09 Sep, 2016 1 commit
  23. 19 Aug, 2016 2 commits
  24. 05 Aug, 2016 2 commits
  25. 19 Jul, 2016 1 commit
  26. 08 Jul, 2016 1 commit
  27. 29 Jun, 2016 1 commit
  28. 03 Mar, 2016 1 commit
  29. 08 Dec, 2015 1 commit
  30. 30 Oct, 2015 1 commit
  31. 29 Oct, 2015 1 commit
  32. 20 Oct, 2015 1 commit
  33. 12 Oct, 2015 1 commit
    • Pavel Vlasov's avatar
      Fixes for IPP integration: · 89eee6ca
      Pavel Vlasov authored
      dotProd_16s - disabled for IPP 9.0.0;
      filter2D - fixed kernel preparation;
      morphology - conditions fix and disabled FilterMin and FilterMax for IPP 9.0.0;
      GaussianBlur - disabled for CV_8UC1 due to buffer overflow;
      integral - disabled for IPP 9.0.0;
      
      IppAutoBuffer class was added;
      89eee6ca
  34. 25 Sep, 2015 1 commit
    • Pavel Vlasov's avatar
      IPP_VERSION_X100 was changed to: · 14b006e8
      Pavel Vlasov authored
      IPP_VERSION_MAJOR * 100 + IPP_VERSION_MINOR*10 + IPP_VERSION_UPDATE
      to manage changes between updates more easily.
      
      IPP_DISABLE_BLOCK was added to ease tracking of disabled IPP functions;
      14b006e8