1. 27 Jul, 2013 2 commits
  2. 22 Jul, 2013 1 commit
  3. 21 Jul, 2013 3 commits
  4. 20 Jul, 2013 2 commits
  5. 19 Jul, 2013 1 commit
  6. 18 Jul, 2013 2 commits
  7. 17 Jul, 2013 1 commit
  8. 15 Jul, 2013 1 commit
  9. 14 Jul, 2013 2 commits
  10. 13 Jul, 2013 3 commits
  11. 12 Jul, 2013 1 commit
  12. 10 Jul, 2013 1 commit
  13. 03 Jul, 2013 1 commit
    • Heinz Hofbauer's avatar
      Bugfix for an overlapping size of image and template for matchTemplate. · a26c4fa2
      Heinz Hofbauer authored
      Example: img of size 10x10 and templ of size 11x9.
      In subsequent code this will results in either width or height of
      corrSize to be zero (0).
      Line 261 will call crossCorr which will then have a zero size of either
      blocksize.width or blocksize.height resulting in a division by zero
      crach in lines 137 or 138.
      a26c4fa2
  14. 26 Jun, 2013 1 commit
  15. 24 Jun, 2013 2 commits
  16. 13 Jun, 2013 1 commit
  17. 07 Jun, 2013 3 commits
  18. 06 Jun, 2013 1 commit
  19. 31 May, 2013 2 commits
  20. 24 May, 2013 2 commits
  21. 18 May, 2013 1 commit
  22. 13 May, 2013 1 commit
  23. 29 Apr, 2013 1 commit
    • ericgreveson's avatar
      Fix for spurious assert in cv::compareHist · 19794e68
      ericgreveson authored
      When comparing histograms that look like multi-channel images (e.g a 3D histogram, of 4x4x4 bins, might appear as a CV_32FC4 matrix), cv::compareHist would complain because it was expecting the matrix type() == CV_32F. Now we test matrix depth() == CV_32F instead.
      19794e68
  24. 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
  25. 17 Apr, 2013 1 commit
  26. 16 Apr, 2013 1 commit
  27. 15 Apr, 2013 1 commit