1. 05 Mar, 2019 1 commit
  2. 26 Dec, 2018 1 commit
  3. 25 Dec, 2018 1 commit
  4. 03 Dec, 2018 1 commit
  5. 26 Nov, 2018 1 commit
  6. 21 Nov, 2018 2 commits
  7. 16 Nov, 2018 1 commit
  8. 08 Nov, 2018 1 commit
    • Vadim Pisarevsky's avatar
      removed C API in the following modules: photo, video, imgcodecs, videoio (#13060) · 11eafca3
      Vadim Pisarevsky authored
      * removed C API in the following modules: photo, video, imgcodecs, videoio
      
      * trying to fix various compile errors and warnings on Windows and Linux
      
      * continue to fix compile errors and warnings
      
      * continue to fix compile errors, warnings, as well as the test failures
      
      * trying to resolve compile warnings on Android
      
      * Update cap_dc1394_v2.cpp
      
      fix warning from the new GCC
      11eafca3
  9. 07 Nov, 2018 1 commit
  10. 06 Nov, 2018 1 commit
  11. 04 Nov, 2018 1 commit
  12. 02 Nov, 2018 1 commit
  13. 31 Oct, 2018 1 commit
  14. 25 Oct, 2018 1 commit
  15. 14 Oct, 2018 1 commit
    • tellowkrinkle's avatar
      Merge pull request #12697 from tellowkrinkle:FasterCocoaWindows · 803ff64b
      tellowkrinkle authored
      * Make cocoa windows draw faster
      
      * Use a CALayer for rendering when possible Uses GPU to scale images, which is important because retina macs will want window sizes much larger (in pixels) than the image
      
      * Fix mouse logic for cocoa windows
      
      * Only halve resolution on retina if image is larger than display
      803ff64b
  16. 11 Sep, 2018 1 commit
  17. 09 Sep, 2018 1 commit
  18. 07 Sep, 2018 1 commit
  19. 06 Sep, 2018 1 commit
  20. 31 Aug, 2018 1 commit
    • Jakub Golinowski's avatar
      Merge pull request #11897 from Jakub-Golinowski:hpx_backend · 9f1218b0
      Jakub Golinowski authored
      * Add HPX backend for OpenCV implementation
      Adds hpx backend for cv::parallel_for_() calls respecting the nstripes chunking parameter. C++ code for the backend is added to modules/core/parallel.cpp. Also, the necessary changes to cmake files are introduced.
      Backend can operate in 2 versions (selectable by cmake build option WITH_HPX_STARTSTOP): hpx (runtime always on) and hpx_startstop (start and stop the backend for each cv::parallel_for_() call)
      
      * WIP: Conditionally include hpx_main.hpp to tests in core module
      Header hpx_main.hpp is included to both core/perf/perf_main.cpp and core/test/test_main.cpp.
      The changes to cmake files for linking hpx library to above mentioned test executalbles are proposed but have issues.
      
      * Add coditional iclusion of hpx_main.hpp to cpp cpu modules
      
      * Remove start/stop version of hpx backend
      9f1218b0
  21. 17 Aug, 2018 1 commit
  22. 15 Aug, 2018 1 commit
  23. 27 Jul, 2018 1 commit
  24. 06 Jul, 2018 2 commits
  25. 05 Jul, 2018 1 commit
  26. 07 Jun, 2018 1 commit
  27. 31 May, 2018 1 commit
  28. 28 May, 2018 1 commit
  29. 25 Apr, 2018 1 commit
  30. 24 Apr, 2018 1 commit
  31. 10 Apr, 2018 2 commits
  32. 30 Mar, 2018 1 commit
  33. 29 Mar, 2018 1 commit
  34. 14 Mar, 2018 1 commit
  35. 13 Feb, 2018 1 commit
  36. 05 Feb, 2018 1 commit
  37. 03 Feb, 2018 1 commit
    • Alexander Alekhin's avatar
      ts: refactor OpenCV tests · 4a297a24
      Alexander Alekhin authored
      - removed tr1 usage (dropped in C++17)
      - moved includes of vector/map/iostream/limits into ts.hpp
      - require opencv_test + anonymous namespace (added compile check)
      - fixed norm() usage (must be from cvtest::norm for checks) and other conflict functions
      - added missing license headers
      4a297a24