vote up 10 vote down star
1

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 documents or "Hello world" type code?

flag

4 Answers

vote up 6 vote down check

The ImageKit framework in Leopard has an IKPictureTaker class that will let you run the standard picture-taking sheet or panel that you seen in iChat and other applications.

If you don't want to use the standard picture-taker panel/sheet interface, you an use the QTKit Capture functionality to get an image from the iSight.

Both of these will require writing some Cocoa code in Objective-C, but that shouldn't really be an obstacle these days.

link|flag
vote up 1 vote down

There is a utility called isightcapture that runs from the unix command line that takes a picture from the isight camera and saves it.

You can check it out at this web site: http://www.macupdate.com/info.php/id/18598

An example of using this with AppleScript is:

tell application "Terminal" do script "/Applications/isightcapture myimage.jpg" end tell

link|flag
vote up 2 vote down

If you want to manipulate the camera directly from your code, you must use the QuickTime Capture APIs or the Cocoa QTKit Capture wrapper (much better).

The only caveat is: if you use a QTCaptureDecompressedVideoOutput, remember that the callbacks aren't made on the main thread, but on the QuickTIme-managed capture thread. Use [someObject performSelectorOnMainThread:... withObject:... waitUntilDone:NO] to send messages to an object on the main thread.

link|flag
vote up 0 vote down

Quartz Composer is also a pleasant way to capture and work with video, when it's applicable. There's a video input patch.

Quartz Composer is a visual programming environment that integrates into a larger Cocoa program if need be.

http://developer.apple.com/graphicsimaging/quartz/quartzcomposer.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.