1. 13 Dec, 2017 1 commit
  2. 07 Dec, 2017 1 commit
  3. 11 Oct, 2017 1 commit
  4. 28 Jul, 2017 1 commit
  5. 17 Apr, 2017 1 commit
  6. 15 Dec, 2016 1 commit
  7. 26 Oct, 2016 1 commit
  8. 26 Jun, 2016 1 commit
  9. 20 May, 2016 1 commit
  10. 11 May, 2016 1 commit
  11. 29 Apr, 2016 1 commit
    • Julien Nabet's avatar
      cppcheck: fix some reports · a29c814b
      Julien Nabet authored
      All of these: (performance) Prefer prefix ++/-- operators for non-primitive types.
      [modules/calib3d/src/fundam.cpp:1049] -> [modules/calib3d/src/fundam.cpp:1049]: (style) Same expression on both sides of '&&'.
      a29c814b
  12. 17 Dec, 2015 1 commit
  13. 20 Oct, 2015 1 commit
  14. 03 Jun, 2015 1 commit
  15. 07 Apr, 2015 1 commit
  16. 20 Oct, 2014 2 commits
    • Chuanbo Weng's avatar
      Update hog.cpp · 2b52bb09
      Chuanbo Weng authored
      Update according to vbystricky's comments
      2b52bb09
    • Chuanbo Weng's avatar
      Correctly enable OpenCL mode in tapi's hog example. · 7452eef6
      Chuanbo Weng authored
      For current OpenCV-CL architecture, if the data buffer
      allocated in UMat are cpu buffer(not ocl buffer) under
      cpu mode, and then pass this UMat to an OpenCL kernel
      as an argument, the OpenCL path will fail and fallback
      to cpu mode. Take HOGDescriptor::oclSvmDetector as an example:
          ocl::setUseOpenCL(false);
          //data allocated in hog.oclSvmDetector will be cpu buffer
          hog.setSVMDetector(HOGDescriptor::getDaimlerPeopleDetector());
          ocl::setUseOpenCL(true);
          //We enabled OpenCL, but hog.oclSvmDetector are cpu buffer,
          //so it will fail in the function ocl_classify_hists
          //when reach to this line
          //idx = k.set(idx, ocl::KernelArg::PtrReadOnly(detector));
          hog.detectMultiScale(img, found, hit_threshold, win_stride,
                  Size(0, 0), scale, gr_threshold);
      
      Similar problems heppen on img_aux and img. So we should re-define
      or re-set these UMat when do mode switch (CPU -> OpenCL) in order
      to make their data be allocated by ocl and then OpenCL path will
      succeed.
      Signed-off-by: 's avatarChuanbo Weng <chuanbo.weng@intel.com>
      7452eef6
  17. 23 Sep, 2014 1 commit
  18. 11 Aug, 2014 1 commit
  19. 10 Aug, 2014 1 commit
  20. 05 Aug, 2014 1 commit
  21. 14 Jul, 2014 1 commit
  22. 07 Jul, 2014 1 commit
  23. 24 Jan, 2014 2 commits
  24. 29 Dec, 2013 2 commits