Recognizing The iPhone

Success

I’m spending the month of July in Utrecht, Netherlands as artist-in-residence at Impakt, working on a project to let computers recognize other computers. For early testing, I’ve trained a computer vision “cascade file” (above) for recognizing front-facing iPhones.

The resulting cascade files, like above, will be released as a printed book, as well as on GitHub.

Collection File App

CreateCollectionFile_000148

A screenshot of a little Processing app for marking objects in photographs. The app saves a “cascade file” for use in training OpenCV. In-progress version is on GitHub.

Installing OpenCV on Mac

UPDATE: Mavericks users were likely frustrated for the last few weeks trying to install OpenCV. It appears the problem has been fixed, and these instructions should work without issue.

My previous post on installing OpenCV for Mac users is one of the most popular on this site (which is simultaneously surprising and fantastic). However, I recently switched from using MacPorts to Homebrew – users that need to migrate existing installs can check out this guide.

Still complicated but thoroughly do-able, here is how to install OpenCV on a Mac running Mountain Lion:

  1. Open Applications > Utilities > Terminal…
  2. Install Homebrew by typing the following into Terminal
  3. Run the command brew doctor to check for any errors
  4. While normal installations using Homebrew are very straightforward, for some reason OpenCV requires an extra step – you need to install an add-on called science:
  5. Then you can run the usual Homebrew command to install OpenCV:

    If this fails, it may be that you have ffmpeg installed – if so, try this instead:
  6. This may take several minutes, so be patient!
  7. Homebrew may tell you that you have to update  PYTHONPATH  – if so, open your favorite text editor, click File > Open… and hit command+shift+. to see hidden files
  8. Navigate up to your home folder and open the  .bash_profile  file – if it doesn’t exist, create it yourself
  9. Add the line suggested by Homebrew, probably something like:
  10. Save the file and close it – you may also have to exit Terminal and open it again
  11. Test by opening Python:

    Then try to import OpenCV:
  12. If you don’t get any errors, you’re all set! Now go enjoy a real beer!

Hope this helps! Problems, suggestions – leave them in the comments.

Installing OpenCV for Python on Mac Lion

Like previous installs of other command-line tools like FFMPEG, the frustration often does not seem worth the trouble.  Esoteric errors are near impossible to parse and files are installed in odd places (odd to me, at least).  Below are the steps I used to install the OpenCV library (blob detection, facial tracking, etc etc) for use with Python on my Mac, running 10.7.4 (Lion).

Much of this was pulled from a StackOverflow post (http://stackoverflow.com/a/6087778/1167783) but the suggestions would have been less helpful had they not be corroborated by several other posts with similar suggestions.  That said, this was the only guide I could find that worked well for me (thanks!).

  1. Install MacPorts (download here)
    If you haven’t already – this makes installation mucheasier; test the install by typing the following into the Terminal:

    If you don’t get an error, it installed correctly
  2. Check your Python version
    If you have Lion, you are likely running Python 2.7 – to double-check, type:

    And see what version comes up.  The problem installing OpenCV for Python seems to be a conflict between what version of Python MacPorts assumes and what you’re really running.  To be sure you are using 2.7, type this into the Terminal:
  3. Install NumPy
    Not sure why this is necessary, but appears to be (NumPydoes 2d array processing, so that’s likely the reason); type the following:
  4. Install OpenCV
    We’re ready!  Type the following and be prepared to wait – OpenCV is quite large and takes a while to download and get set up.  If you’ve already installed it in another location (I had) it appears that MacPorts just links it – nice!  Type:
  5. Test
    In the Terminal, type the following to enter Python:

    Then, to test OpenCV, type:

    If you don’t get an error, you’re good!  To exit Python, type:

Some of the suggestions I found say that you need to do some further profile editing and other (weird) stuff – I didn’t need to, but if you have problems it might be worth a try.

To further test the library, try this simple example that converts an image from one file format to another.  I wrote this in TextWrangler, saved the file, and ran it using the #! > Run in Terminal… command (requires the command-line tools to be installed.

The new file should be generated and you’re good to go!

Thoughts, suggestions, or problems?  Please send me an email: mail [at] jeffreythompson [dot] org

No Longer A Face

Using facial-recognition algorithms (Processing’s OpenCV library) while slowly degrading an image until the algorithm no longer sees a face.