1. 13 Sep, 2018 1 commit
  2. 04 Jul, 2018 1 commit
  3. 27 Apr, 2018 1 commit
    • Tomoaki Teshima's avatar
      Merge pull request #11409 from tomoaki0705/fixCLAHEfailure · 87a4f4ab
      Tomoaki Teshima authored
      Arm: fix the test failure of OCL_Imgproc/CLAHETest.Accuracy on ODROID-XU4 (#11409)
      
      * fix the test failure of OCL_Imgproc/CLAHETest.Accuracy on ODROID-XU4
        * avoid the race condition in the reduce
      
      * imgproc(ocl): simplify CLAHE code
      
      * remove unused class
      87a4f4ab
  4. 28 Mar, 2018 1 commit
  5. 28 Nov, 2017 1 commit
    • Alexander Alekhin's avatar
      ocl: avoid unnecessary loading/initializing OpenCL subsystem · 0ed3209b
      Alexander Alekhin authored
      If there are no OpenCL/UMat methods calls from application.
      
      OpenCL subsystem is initialized:
      - haveOpenCL() is called from application
      - useOpenCL() is called from application
      - access to OpenCL allocator: UMat is created (empty UMat is ignored) or UMat <-> Mat conversions are called
      
      Don't call OpenCL functions if OPENCV_OPENCL_RUNTIME=disabled
      (independent from OpenCL linkage type)
      0ed3209b
  6. 04 Nov, 2016 1 commit
  7. 22 Oct, 2016 1 commit
  8. 19 Aug, 2016 1 commit
  9. 22 Apr, 2016 1 commit
  10. 20 Oct, 2015 1 commit
  11. 16 Feb, 2015 1 commit
  12. 12 Jan, 2015 1 commit
  13. 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
  14. 30 Sep, 2014 1 commit
  15. 11 Aug, 2014 1 commit
  16. 05 Aug, 2014 1 commit
  17. 25 Feb, 2014 1 commit
  18. 17 Feb, 2014 1 commit
  19. 27 Jan, 2014 1 commit
  20. 19 Jan, 2014 1 commit
  21. 30 Dec, 2013 1 commit
  22. 27 Dec, 2013 1 commit
  23. 06 Sep, 2013 1 commit
    • Vladislav Vinogradov's avatar
      Merge branch 'master' into gpu-cuda-rename · 0c7663eb
      Vladislav Vinogradov authored
      Conflicts:
      	modules/core/include/opencv2/core/cuda.hpp
      	modules/cudacodec/src/thread.cpp
      	modules/cudacodec/src/thread.hpp
      	modules/superres/perf/perf_superres.cpp
      	modules/superres/src/btv_l1_cuda.cpp
      	modules/superres/src/optical_flow.cpp
      	modules/videostab/src/global_motion.cpp
      	modules/videostab/src/inpainting.cpp
      	samples/cpp/stitching_detailed.cpp
      	samples/cpp/videostab.cpp
      	samples/gpu/stereo_multi.cpp
      0c7663eb
  24. 05 Sep, 2013 1 commit
  25. 31 May, 2013 1 commit
    • Roman Donchenko's avatar
      Split CLAHE into its own file, because it's faster that way. · f90fd5b0
      Roman Donchenko authored
      Yes, it's as ludicrous as it sounds, but it's still true. Bizarrely,
      the previous commit makes CLAHE run about 10% slower on Android, even
      though it doesn't even touch any CLAHE code. Splitting it off fixes that,
      although the reason it does is a mystery for the ages.
      
      It's cleaner when it's in its own file, anyway. ;=]
      f90fd5b0