bharathi
bharathi

Reputation: 21

How to get Usb camera frames in c++

I have a usb camera, now I have to find if the camera is connected in my computer(Windows), If connected, I have to send the frames, how can I do in c++ without opencv....

Upvotes: 2

Views: 1794

Answers (1)

maddouri
maddouri

Reputation: 3832

I'm not familiar with the Windows API for performing IO on cameras, but I think that you might find Capturing Video from Web-camera on Windows 7 and 8 by using Media Foundation interesting. The author used to depend on videoInput but then resorted to implementing his own lib.

You can also find a detailed (but old) tutorial here.

Upvotes: 1

Related Questions