1. 14 5月, 2013 4 次提交
  2. 13 5月, 2013 4 次提交
  3. 12 5月, 2013 1 次提交
  4. 09 5月, 2013 1 次提交
  5. 08 5月, 2013 1 次提交
  6. 07 5月, 2013 4 次提交
  7. 06 5月, 2013 1 次提交
  8. 04 5月, 2013 1 次提交
  9. 03 5月, 2013 2 次提交
  10. 02 5月, 2013 2 次提交
  11. 01 5月, 2013 1 次提交
    • P
      Fix tuto3 picture taken crash on all devices · bef6de90
      poiuytrez 提交于
      A modification of the JavaCameraView is needed to avoid a crash when the
      app is exited. It is a good practice to remove the callback after the
      stopPreview method.
      bef6de90
  12. 30 4月, 2013 3 次提交
  13. 29 4月, 2013 3 次提交
  14. 28 4月, 2013 2 次提交
  15. 26 4月, 2013 1 次提交
    • R
      Changed convexHull's documentation to essentially invert the meaning of ``clockwise``. · 2dc86425
      Roman Donchenko 提交于
      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
  16. 24 4月, 2013 2 次提交
  17. 23 4月, 2013 2 次提交
  18. 17 4月, 2013 5 次提交