vote up 0 vote down star

Hi to all

I'm wrtiting a C++ application with Trolltech QT Library and I need to capture video stream from a camera and some medical instrumentations.

What kind of hardware can I use to do this? I've tried with OpenCV but it doesn't recognize my EyeTV 250.

Can I use Pinnacle Video capture for Mac?

thanks, Andrea

flag

1 Answer

vote up 1 vote down check

I believe that Qt delegates to QuickTime for media on OS X. I'd therefore expect that any hardware supported by QuickTime is in play. If you're willing to be locked to OS X, using the native API will likely be much easier. QTKit, the Objective-C API for QuickTime is new with Leopard (OS X 10.5) and is very good. You'll likely want to start with QTKit's Capture API. Since you're working with C++, you'll also want to learn about Objective-C++ for building the connection between QTKit and your code.

link|flag
Thanks Barry. I try with QTKit, but if possible I prefer to use OpenCV to capture video because I need to port the QTApplication on Windows. – Andrea Girardi Mar 31 at 20:32
It looks like OpenCV supports at least some hardware on OS X: opencv.willowgarage.com/wiki/… – Barry Wark Mar 31 at 21:21
Furthermore, OpenCV should now support any DCam/IIDC on OS X via libdc1394. See opencv.willowgarage.com/wiki/Mac_OS_X_OpenCV_Port/…. – Barry Wark Mar 31 at 21:23
The problem is that i don't know what kind of hardware i need to connect my camera to my mac. I've tried with Elgato EYETV250 but openCV and avcap-0.1.6 libs but neither of them recognize the camera. – Andrea Girardi Apr 1 at 8:37
My camera isn't I1394. – Andrea Girardi Apr 1 at 8:38

Your Answer

Get an OpenID
or

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