1. 07 Sep, 2017 1 commit
  2. 31 Aug, 2017 1 commit
  3. 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
  4. 04 Jul, 2017 1 commit
  5. 03 Jul, 2017 1 commit
  6. 27 Jun, 2017 1 commit
  7. 15 Jun, 2017 1 commit
  8. 13 Jun, 2017 1 commit
  9. 01 Jun, 2017 1 commit
  10. 20 Apr, 2017 1 commit
  11. 06 Apr, 2017 1 commit
  12. 01 Apr, 2017 1 commit
  13. 24 Mar, 2017 1 commit
  14. 20 Mar, 2017 1 commit
    • vartenkov's avatar
      Fix multichannel warping with BORDER_CONSTANT · 3fbe1f8d
      vartenkov authored
      Warping a matrix with more than 4 channels using BORDER_CONSTANT and
      INTER_NEAREST, INTER_CUBIC or INTER_LANCZOS4 interpolation led to
      undefined behaviour. This commit changes the behavior of these methods
      to be similar to that of INTER_LINEAR. Changed the scope of some of the
      variables to more local. Modified some tests to be able to detect the
      error described.
      3fbe1f8d
  15. 16 Mar, 2017 1 commit
  16. 21 Feb, 2017 1 commit
  17. 14 Feb, 2017 1 commit
    • Alexander Alekhin's avatar
      ocl: validate arguments in KernelArgs constructor · 4c7aa864
      Alexander Alekhin authored
      - don't use undefined flag=0. It should be CONSTANT instead.
      - don't allow 'UMat* m=NULL' argument (except LOCAL/CONSTANT flags).
        This case is not handled well to provide NULL __global pointers.
        It is better to use '-D' macro defines instead (at least for performance)
      4c7aa864
  18. 13 Feb, 2017 1 commit
  19. 14 Dec, 2016 2 commits
  20. 30 Nov, 2016 1 commit
  21. 29 Nov, 2016 1 commit
  22. 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
  23. 02 Nov, 2016 1 commit
  24. 19 Aug, 2016 2 commits
  25. 20 Jul, 2016 1 commit
  26. 12 Jul, 2016 1 commit
  27. 24 Apr, 2016 1 commit
    • ohnozzy's avatar
      Add OpenCL support to linearPolar & logPolar · db9f6117
      ohnozzy authored
      Add OpenCL  support to linearPolar & logPolar.
      The OpenCL code use float instead of double, so that it does not require
      cl_khr_fp64 extension, with slight precision lost.
      
      Add explicit conversion
      
      Add explicit conversion from double to float to eliminate warning during
      compilation.
      db9f6117
  28. 14 Apr, 2016 1 commit
    • ohnozzy's avatar
      Bug Fix for 6377 · 9be6b4f2
      ohnozzy authored
      Rewrite linearPolar & logPolar so that they do not depend on the
      deprecated API CvMat. Issue 6377 is resolved in this way because the two
      routines do not convert UMat to CvMat anymore.
      9be6b4f2
  29. 07 Apr, 2016 1 commit
  30. 03 Mar, 2016 2 commits
  31. 07 Dec, 2015 2 commits
    • grundman's avatar
      Update imgwarp.cpp · 2f0a598a
      grundman authored
      github editor does not show white space and inserts one for you ... great combination
      2f0a598a
    • grundman's avatar
      Update imgwarp.cpp · 5772cb52
      grundman authored
      Check for identity resize => use copy instead (1.37 ms -> 0.07 ms on 720p)
      5772cb52
  32. 20 Oct, 2015 1 commit
  33. 01 Oct, 2015 1 commit
  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
  35. 24 Jun, 2015 1 commit
  36. 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