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