Jonathan Plumb
Jonathan Plumb

Reputation: 435

Display webcam feed on windows form in C# without using 3rd party libraries

Here's the thing. I like building my own libraries because I learn a LOT about the functionality of everything in doing so. I'm looking to build a viewport on my windows form application (in C#) that streams live feed from my webcam.

Anyone know how to do this? I've found countless tutorials using other peoples libraries, but like I said before that's not what I'm looking for.

Thanks!

Upvotes: 1

Views: 5543

Answers (1)

basarat
basarat

Reputation: 276229

A complete tutorial on writing your own API : http://www.c-sharpcorner.com/uploadfile/yougerthen/integrate-the-web-webcam-functionality-using-C-Sharp-net-and-com-part-viii/

Does not use a third party library but the windows built in one called avicap32.dll

Upvotes: 2

Related Questions