1. 05 Sep, 2013 1 commit
  2. 27 Aug, 2013 1 commit
  3. 21 Aug, 2013 1 commit
  4. 16 Aug, 2013 1 commit
  5. 08 Aug, 2013 1 commit
  6. 07 Aug, 2013 1 commit
  7. 02 Aug, 2013 1 commit
  8. 31 Jul, 2013 1 commit
  9. 21 Jul, 2013 1 commit
  10. 19 Jul, 2013 1 commit
  11. 10 Jul, 2013 1 commit
  12. 13 Jun, 2013 1 commit
  13. 10 Jun, 2013 1 commit
  14. 31 May, 2013 1 commit
  15. 16 Apr, 2013 1 commit
  16. 15 Apr, 2013 1 commit
  17. 12 Apr, 2013 1 commit
  18. 11 Apr, 2013 1 commit
  19. 10 Apr, 2013 1 commit
  20. 09 Apr, 2013 1 commit
  21. 08 Apr, 2013 4 commits
    • Andrey Kamaev's avatar
      Make highgui.hpp independent from C API · 0738ea7d
      Andrey Kamaev authored
      0738ea7d
    • Andrey Kamaev's avatar
      Make imgproc.hpp independent from C API · 288a0634
      Andrey Kamaev authored
      288a0634
    • Vladislav Vinogradov's avatar
      fixed sanity test on Windows · c89786bc
      Vladislav Vinogradov authored
      c89786bc
    • Stefan Walk's avatar
      Make rescaling flexible and add median filtering · 6062601c
      Stefan Walk authored
      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
  22. 04 Apr, 2013 1 commit
  23. 03 Apr, 2013 1 commit
  24. 01 Apr, 2013 4 commits
  25. 29 Mar, 2013 1 commit
  26. 22 Mar, 2013 2 commits
  27. 21 Mar, 2013 3 commits
  28. 20 Mar, 2013 3 commits
  29. 15 Mar, 2013 1 commit
    • Andrey Kamaev's avatar
      Unified handling of InputOutputArrays in Python wrapper generator · e75df563
      Andrey Kamaev authored
      This makes arguments of type InputOutputArray required in python unless they
      have a default value in C++.
      
      As result following python functions changes signatures in non-trivial way:
      
      * calcOpticalFlowFarneback
      * calcOpticalFlowPyrLK
      * calibrateCamera
      * findContours
      * findTransformECC
      * floodFill
      * kmeans
      * PCACompute
      * stereoCalibrate
      
      And the following functions become return their modified inputs as a return
      value:
      
      * accumulate
      * accumulateProduct
      * accumulateSquare
      * accumulateWeighted
      * circle
      * completeSymm
      * cornerSubPix
      * drawChessboardCorners
      * drawContours
      * drawDataMatrixCodes
      * ellipse
      * fillConvexPoly
      * fillPoly
      * filterSpeckles
      * grabCut
      * insertChannel
      * line
      * patchNaNs
      * polylines
      * randn
      * randShuffle
      * randu
      * rectangle
      * setIdentity
      * updateMotionHistory
      * validateDisparity
      * watershed
      e75df563