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