Is it possible to access the iSight camera on a macbook programatically? By this I mean I would like to be able to just grab still frames from the iSight camera on command and then do something with them. If so, is it only accessible using objective c, or could other languages be used as well?
|
feedback
|
|
You should check out the QTKit Capture documentation. On Leopard, you can get at all of it over the RubyCocoa bridge:
| |||
|
feedback
|
|
I don't have a Mac here, but there is some Documentation up here: http://developer.apple.com/documentation/Hardware/Conceptual/iSightProgGuide/01introduction/chapter_1_section_1.html It looks like you have to go through the QuickTime API. There is supposed to be a Sample Project called "MungGrab" which could be worth a look according to this thread. | |||
feedback
|
|
If you poke around Apple's mailing lists you can find some code to do it in Java as well. Here's a simple example suitable for capturing individual frames, and here's a more complicated one that's fast enough to display live video. | |||
|
feedback
|
|
If it's not possible, how do you think Apple does it, magic? Too bad I won't get a nitpicker badge for this... :D | |||
|
feedback
|
|
One thing that hasn't been mentioned so far is the IKPictureTaker, which is part of Image Kit. This will come up with the standard OS provided panel to take pictures though, with all the possible filter functionality etc. included. I'm not sure if that's what you want. I suppose you can use it from other languages as well, considering there are things like cocoa bridges but I have no experience with them. Googling also came up with another question on stackoverflow that seems to address this issue. | |||
|
feedback
|
|
Aside from ObjC, you can use the PyObjC or RubyCocoa bindings to access it also. If you're not picky about which language, I'd say use Ruby, as PyObjC is horribly badly documented (even the official Apple page on it refers to the old version, not the one that came with OS X Leopard) Quartz Composer is probably the easiest way to access it, and .quartz files can be embed in applications pretty easily (and the data piped out to ObjC or such) Also, I suppose there should be an example or two of this in the /Developer/Examples/ | |||
|
feedback
|
|
There's a command line utility called | |||
|
feedback
|
|
From a related question which specifically asked the solution to be pythonic, you should give a try to motmot's camiface library from Andrew Straw. It also works with firewire cameras, but it works also with the isight, which is what you are looking for. From the tutorial:
| |||
|
feedback
|