1. 05 Jan, 2018 1 commit
  2. 28 Nov, 2017 2 commits
  3. 27 Nov, 2017 2 commits
  4. 18 Sep, 2017 2 commits
  5. 08 Sep, 2017 1 commit
  6. 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
  7. 30 Jun, 2017 1 commit
  8. 23 May, 2017 1 commit
  9. 06 Apr, 2017 1 commit
  10. 21 Feb, 2017 1 commit
  11. 14 Dec, 2016 1 commit
  12. 29 Nov, 2016 1 commit
  13. 11 Oct, 2016 1 commit
  14. 19 Aug, 2016 2 commits
  15. 02 Aug, 2016 1 commit
  16. 20 Jul, 2016 1 commit
  17. 12 Jul, 2016 1 commit
  18. 09 Jul, 2016 1 commit
  19. 17 May, 2016 2 commits
  20. 20 Oct, 2015 1 commit
  21. 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
  22. 06 Aug, 2015 1 commit
  23. 25 Jun, 2015 1 commit
  24. 24 Jun, 2015 1 commit
  25. 22 Jun, 2015 1 commit
  26. 18 Jun, 2015 1 commit
    • Dmitry Budnikov's avatar
      ipp_countNonZero build fix; · a5a21019
      Dmitry Budnikov authored
      Removed IPP port for tiny arithm.cpp functions
      
      Additional warnings fix on various platforms.
      
      Build without OPENCL and GCC warnings fixed
      
      Fixed warnings, trailing spaces and removed unused secure_cpy.
      
      IPP code refactored.
      
      IPP code path  implemented as separate static functions to simplify future work with IPP code and make it more readable.
      a5a21019
  27. 27 Feb, 2015 1 commit
  28. 26 Feb, 2015 1 commit
  29. 05 Nov, 2014 1 commit
  30. 27 Oct, 2014 1 commit
  31. 22 Oct, 2014 1 commit
    • Miroslav Benes's avatar
      Add Triangle thresholding algorithm · 5b1fd739
      Miroslav Benes authored
      Add Triangle method for automatic threshold computation next to the existing
      Otsu's method. Triangle deals better with images whose histogram does not
      contain dominant peak.
      
      See paper Zack GW, Rogers WE, Latt SA.: Automatic measurement of sister
      chromatid exchange frequency. J Histochem Cytochem. 1977 Jul;25(7):741-53.
      5b1fd739
  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 1 commit
  34. 14 Aug, 2014 1 commit
  35. 13 Aug, 2014 1 commit
    • Adil Ibragimov's avatar
      Several type of formal refactoring: · 8a4a1bb0
      Adil Ibragimov authored
      1. someMatrix.data -> someMatrix.prt()
      2. someMatrix.data + someMatrix.step * lineIndex -> someMatrix.ptr( lineIndex )
      3. (SomeType*) someMatrix.data -> someMatrix.ptr<SomeType>()
      4. someMatrix.data -> !someMatrix.empty() ( or !someMatrix.data -> someMatrix.empty() ) in logical expressions
      8a4a1bb0