1. 24 1月, 2014 3 次提交
  2. 22 1月, 2014 1 次提交
  3. 21 1月, 2014 1 次提交
  4. 18 1月, 2014 1 次提交
  5. 17 1月, 2014 4 次提交
  6. 07 1月, 2014 1 次提交
  7. 21 12月, 2013 1 次提交
  8. 30 11月, 2013 1 次提交
  9. 22 10月, 2013 1 次提交
  10. 20 10月, 2013 1 次提交
  11. 06 9月, 2013 1 次提交
    • V
      Merge branch 'master' into gpu-cuda-rename · 0c7663eb
      Vladislav Vinogradov 提交于
      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
  12. 05 9月, 2013 1 次提交
  13. 27 8月, 2013 1 次提交
  14. 21 8月, 2013 1 次提交
  15. 16 8月, 2013 1 次提交
  16. 08 8月, 2013 1 次提交
  17. 07 8月, 2013 1 次提交
  18. 02 8月, 2013 1 次提交
  19. 31 7月, 2013 1 次提交
  20. 21 7月, 2013 1 次提交
  21. 20 7月, 2013 1 次提交
  22. 10 7月, 2013 1 次提交
  23. 14 6月, 2013 1 次提交
  24. 10 6月, 2013 1 次提交
  25. 31 5月, 2013 1 次提交
  26. 16 4月, 2013 1 次提交
  27. 15 4月, 2013 1 次提交
  28. 12 4月, 2013 1 次提交
  29. 11 4月, 2013 1 次提交
  30. 10 4月, 2013 1 次提交
  31. 09 4月, 2013 1 次提交
  32. 08 4月, 2013 4 次提交
    • A
      Make highgui.hpp independent from C API · 0738ea7d
      Andrey Kamaev 提交于
      0738ea7d
    • A
      Make imgproc.hpp independent from C API · 288a0634
      Andrey Kamaev 提交于
      288a0634
    • V
      fixed sanity test on Windows · c89786bc
      Vladislav Vinogradov 提交于
      c89786bc
    • S
      Make rescaling flexible and add median filtering · 6062601c
      Stefan Walk 提交于
      Previously the pyramid was done with a rescaling factor of 2 (implied by the
      use of pyrDown). This often leads to inferior results compared to a scale step
      of e.g. 0.8 (a factor of 2 is obviously faster). This commit makes the scale
      step configurable and uses a resonable default value.
      
      The other change in this commit is that median filtering is added. This is not
      described in this paper but it is done in the author's implementation. (See
      e.g. "Secrets of optical flow estimation and their principles", Sun et al.,
      CVPR 2010) This serves as periodic outlier removal during optimization, leading
      to smoother flow fields while preserving motion edges. This includes splitting
      the optimization loop into two loops.
      6062601c