webcam access in c++

2019-01-22 12:43发布

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.

6条回答
\"骚年 ilove
2楼-- · 2019-01-22 13:23

You can use DirectShow: here

查看更多
唯我独甜
3楼-- · 2019-01-22 13: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.

查看更多
我命由我不由天
4楼-- · 2019-01-22 13:30

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.

查看更多
放荡不羁爱自由
5楼-- · 2019-01-22 13:39

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

查看更多
别忘想泡老子
6楼-- · 2019-01-22 13:40

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.

查看更多
爱情/是我丢掉的垃圾
7楼-- · 2019-01-22 13:47

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.

查看更多
登录 后发表回答