I\'d like to use the camera in my Macbook in a program. I\'m fairly language agnostic - C, Java, Python etc are all fine. Could anyone suggest the best place to look for documen
Another solution is OpenCV+python with a script like:
import cv capture = cv.CaptureFromCAM(0) img = cv.QueryFrame(capture)
Cannot do any simpler!