views:

48

answers:

1

What is the best choice for webcam video/image capture under Mac OSX with C/C++? It seems that Apple recommended QTKit, but it is a Objective-C library. Any sample code to do the job?

+1  A: 

You can use the Objective-C library from your C++ program indirectly. Just create a C interface to the Objective-C functions and compile it with your Objective-C compiler.

bitc