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?
|
1
|
|
|
|
|
|
The ImageKit framework in Leopard has an 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. |
||
|
|
|
|
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 |
||
|
|
|
|
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. |
||
|
|
|
|
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 |
||
|
|
