简体   繁体   中英

webcam access in c++

I want to access the webcam so I can do some precessing on the images, like tracking a light, but I can't find a way to access the webcam. I googled it but I got confused.

Can you point me to a library that can do that (windows)? and maybe also provide an example?

I would need to periodically get a pixel map of the image, about 20 time per second or so if it would be possible.

You need DirectShow . This is a Windows framework for video playback and capture.

It's included in Windows SDK and there are many samples for video input capture included.

But, as Vijay mentioned, you can also try using OpenCV since it not only abstracts away the platform-specific video capture API, it also includes many image processing algorithms you could use to track the light in your project.

There's a wrapper for DirectMedia/DirectShow called Extremely Simple Capture API or ESCAPI. If you don't need to do anything complicated, ESCAPI might be a good bet.

Checkout OpenCV . It is a cross-platform computer vision SDK and has modules to capture images from the webcam. Maybe too feature rich for you, but it's worth a look.

If you target Windows Vista (or Seven), there's the new Media Foundation SDK, which is slightly easier to manipulate and more feature-rich, and most important, will be better supported by Microsoft in the future.

You can find out about it here .

And about video capture specifically here .

你可以在这里使用DirectShow:

你也可以试试openframeworks http://openframeworks.cc/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM