1. 13 May, 2013 6 commits
  2. 12 May, 2013 3 commits
  3. 09 May, 2013 1 commit
  4. 08 May, 2013 1 commit
  5. 07 May, 2013 4 commits
  6. 06 May, 2013 1 commit
  7. 04 May, 2013 1 commit
  8. 03 May, 2013 2 commits
  9. 02 May, 2013 2 commits
  10. 01 May, 2013 1 commit
  11. 30 Apr, 2013 2 commits
  12. 29 Apr, 2013 4 commits
  13. 27 Apr, 2013 2 commits
  14. 26 Apr, 2013 1 commit
    • Roman Donchenko's avatar
      Changed convexHull's documentation to essentially invert the meaning of ``clockwise``. · 2dc86425
      Roman Donchenko authored
      The orientation of convexHull's result is currently the opposite of what the
      documentation would suggest:
      
      >>> import cv2, numpy as np
      >>> points = np.array([[0,0],[0,1],[1,0]], dtype=np.int32)
      >>> cv2.convexHull(points, clockwise=False)
      array([[[1, 0]],
             [[0, 1]],
             [[0, 0]]], dtype=int32)
      >>> cv2.convexHull(points, clockwise=True)
      array([[[0, 0]],
             [[0, 1]],
             [[1, 0]]], dtype=int32)
      
      Changing the function itself is probably not a good idea at this point, so
      this fixes the documentation by flipping the coordinate system.
      
      I also removed the mention of the origin, since it's irrelevant for this
      function.
      2dc86425
  15. 24 Apr, 2013 2 commits
  16. 23 Apr, 2013 2 commits
  17. 17 Apr, 2013 5 commits