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