1. 26 Dec, 2013 1 commit
  2. 06 Dec, 2013 1 commit
  3. 25 Nov, 2013 1 commit
  4. 06 Nov, 2013 1 commit
  5. 04 Oct, 2013 1 commit
  6. 30 Sep, 2013 1 commit
  7. 26 Sep, 2013 1 commit
  8. 19 Sep, 2013 2 commits
  9. 18 Sep, 2013 1 commit
  10. 15 Sep, 2013 2 commits
  11. 04 Sep, 2013 2 commits
  12. 31 Aug, 2013 1 commit
  13. 29 Aug, 2013 1 commit
  14. 27 Aug, 2013 1 commit
  15. 21 Aug, 2013 2 commits
  16. 13 Aug, 2013 1 commit
  17. 12 Aug, 2013 2 commits
  18. 07 Aug, 2013 1 commit
  19. 02 Aug, 2013 1 commit
  20. 31 Jul, 2013 3 commits
  21. 30 Jul, 2013 1 commit
  22. 27 Jul, 2013 1 commit
  23. 19 Jul, 2013 1 commit
  24. 24 Jun, 2013 1 commit
  25. 06 Jun, 2013 1 commit
  26. 24 May, 2013 2 commits
  27. 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
  28. 17 Apr, 2013 1 commit
  29. 16 Apr, 2013 1 commit
  30. 12 Apr, 2013 1 commit
  31. 10 Apr, 2013 1 commit
  32. 08 Apr, 2013 1 commit