Multimedia
-
How get data (form Image) to display image into our application from a device named Webcam which is capturing a person sitting on the computer. Which class does support this ?
Hello The best way to do it is to use DirectShow. You can try to interop it or to use managed extension of DirectShow 9. There are couple of article on CP about DirectShow usage in C# applications, for example here is one [^]. You can look at my "Motion Detection" article for a sample of communication with local capture device such as USB webcam. With best regards, Andrew
-
How get data (form Image) to display image into our application from a device named Webcam which is capturing a person sitting on the computer. Which class does support this ?
I belief, that most Webcams support TWAIN and/or WIA as interface. Here in CodeProject you finds Wrappers for TWAIN and WIA. TWAIN is a normed API to read still images like scanner and webcams. WIA is the newer API (and supported since Windows 2K). See: .NET TWAIN image scanner See: WIA Scripting and .NET Lars Niedziolka