Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"Preferred" method to access webcam from C# in Windows Vista / 7

I've found plenty of posts discussing WIA, Windows Portable Devices API and DirectShow (and giving example code) for accessing a webcam from C# but when you research each method you seem to come across references that these are "old" methods.

So, question is, when running nothing earlier than Windows Vista, what is the "preferred" method for accessing a webcam from C#?

Thanks,

John.

like image 463
John Avatar asked May 25 '11 12:05

John


People also ask

Which CV object is used to capture video from webcam?

To capture a video, you need to create a VideoCapture object.


1 Answers

I think what you are looking for is Windows Media Fundation. Extracted from MSDN:

Microsoft Media Foundation was introduced in Windows Vista as the replacement for DirectShow. Of course, DirectShow is still supported in Windows 7, but developers are encouraged to use Media Foundation in their new digital media applications.

like image 139
yms Avatar answered Sep 28 '22 18:09

yms