Search code examples
macosimage-processingscriptingwebcamobject-detection

Looking for an OSX application that can do image processing using a webcam


I'm looking for an OSX (or Linux?) application that can recieve data from a webcam/video-input and let you do some image processing on the pixels in something similar to c or python or perl, not that bothered about the processing language.

I was considering throwing one together but figured I'd try and find one that exists already first before I start re-inventing the wheel.

Wanting to do some experiments with object detection and reading of dials and numbers.


Solution

  • If you're willing to do a little coding, you want to take a look at QTKit, the QuickTime framework for Cocoa. QTKit will let you easity set up an input source from the webcam (intro here). You can also apply Core Image filters to the stream (demo code here). If you want to use OpenGL to render or apply filters to the movie, check out Core Video (examples here).

    Using theMyMovieFilter demo should get you up and running very quickly.