1. 12 4月, 2017 1 次提交
  2. 11 4月, 2017 1 次提交
  3. 25 3月, 2017 1 次提交
  4. 15 3月, 2017 1 次提交
  5. 09 3月, 2017 1 次提交
  6. 21 2月, 2017 1 次提交
  7. 17 12月, 2016 1 次提交
  8. 16 12月, 2016 1 次提交
    • R
      Merge pull request #7774 from savuor:openvx_pyrlk · 5372c8b3
      Rostislav Vasilikhin 提交于
      OpenVX optical flow PyrLK wrappers added (#7774)
      
      * wrappers for vx_pyramid added
      
      * initial version of Optical Flow PyrLK wrappers added
      
      * array downloading code simplified
      
      * disabled due to bad accuracy; fixed bugs, e.g. vendor-specific ones
      
      * rewritten for new macro use
      5372c8b3
  9. 05 12月, 2016 1 次提交
  10. 07 11月, 2016 1 次提交
  11. 16 10月, 2016 1 次提交
  12. 11 10月, 2016 1 次提交
  13. 15 9月, 2016 1 次提交
  14. 07 9月, 2016 1 次提交
  15. 19 8月, 2016 1 次提交
  16. 12 8月, 2016 1 次提交
  17. 09 8月, 2016 1 次提交
  18. 29 5月, 2016 2 次提交
    • G
      Fixed BackgroundSubstractorMOG2 in opencv_video. · 9e53f039
      Gilles Rochefort 提交于
      The number of gaussians involved in a mixture is supposed
      to be dynamically adjusted. After being increased, the number
      of gaussians can't be reduced anymore.
      
      It seems to be a regression as the legacy code
      located in modules/legacy/src/bgfg_gaussmix.cpp allows to reduce
      such number of gaussians.
      9e53f039
    • G
      Fixed BackgroundSubstractorMOG2 in opencv_video. · 78de7539
      Gilles Rochefort 提交于
      The number of gaussians involved in a mixture is supposed
      to be dynamically adjusted. After being increased, the number
      of gaussians can't be reduced anymore.
      
      It seems to be a regression as the legacy code
      located in modules/legacy/src/bgfg_gaussmix.cpp allows to reduce
      such number of gaussians.
      78de7539
  19. 08 4月, 2016 1 次提交
  20. 07 3月, 2016 1 次提交
  21. 29 1月, 2016 3 次提交
  22. 09 12月, 2015 1 次提交
  23. 20 10月, 2015 1 次提交
  24. 14 9月, 2015 1 次提交
  25. 09 9月, 2015 1 次提交
  26. 06 8月, 2015 1 次提交
  27. 22 7月, 2015 1 次提交
  28. 20 7月, 2015 1 次提交
  29. 02 6月, 2015 1 次提交
  30. 20 3月, 2015 2 次提交
    • O
      Modify findTransformECC to support a mask of pixels to consider · 86fb9f84
      Owen Healy 提交于
      Tests of the mask are also included.
      
      This is useful for registering a non-square image against a non-square
      template.
      
      This also needs to relax a sanity check as per
      https://github.com/Itseez/opencv/pull/3851
      86fb9f84
    • O
      Fix bug of uninitialized matrix in findTransformECC · ff48387a
      Owen Healy 提交于
      The matrix templateZM needs to be initialized because otherwise
      uninitialized values leak into the correlation in:
      
          const double correlation = templateZM.dot(imageWarped)
      
      In the worst case this will lead the correlation to be NaN ruining the
      whole routine. The subtraction does not initialize templateZM due to the
      mask.
      
      Unfortunately, the uninitialized values (by altering the correlation)
      have the side effect of dragging out the computation a little longer
      giving a slightly better error bound. This means that fixing this bug
      breaks perf_ecc where
      
          SANITY_CHECK(warpMat, 1e-3);
      
      is just a little too tight and happens to work due to the uninitialized
      values. Since this is a performance not a accuracy test I think it is OK
      to just relax the error bound a little bit (the tight error bound being
      after all the result of a bug).
      ff48387a
  31. 06 3月, 2015 1 次提交
  32. 05 3月, 2015 1 次提交
  33. 27 2月, 2015 2 次提交
  34. 16 2月, 2015 1 次提交
  35. 05 12月, 2014 1 次提交