webcam access in c++

时间秒杀一切 提交于 2019-11-28 20:26:25

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.

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.

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.

You can use DirectShow: here

you can try openframeworks as well http://openframeworks.cc/

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!