1. 03 Apr, 2013 3 commits
  2. 02 Apr, 2013 13 commits
  3. 01 Apr, 2013 19 commits
  4. 31 Mar, 2013 3 commits
  5. 29 Mar, 2013 2 commits
    • Dustin Spicuzza's avatar
      Port dft.py sample from cv to cv2 · b08432cf
      Dustin Spicuzza authored
      b08432cf
    • Misty De Meo's avatar
      Fix ant/Java detection in cmake scripts · e143706e
      Misty De Meo authored
      Mac OS X 10.7 and newer don't come with Java installed. They do
      include some stub binaries, which ask the user if they want to
      install Java when run.
      
      OpenCV's cmake script just checks for the existence of an ant
      binary and assumes that Java's available if ant is. As a result,
      cmake will configure the build to use Java and it will fail once
      it tries to compile the Java bindings.
      
      This fixes the issue by checking for the exit status of
      `ant -version` - it exits 0 if Java is installed, or 1
      otherwise.(cherry picked from commit a423afdd)
      e143706e