user3761832
user3761832

Reputation: 583

problems with accessing webcam output in c# application

i know this is most likely a duplication and i am truly sorry for that but most of the solutions i found was either +7 years outdated, bugged or consume so much memory

all i need is an efficient way to access the webcam to record and display to use it in a computer vision project to detect moving objects and such, with an HD output (using HD camera of course)

also if there is a library that would help with the computer vision that would also be great

any information, tips or experience would be highly appreciated, thanks in advance and have a wonderful day.

Upvotes: 1

Views: 253

Answers (1)

Nicolas C
Nicolas C

Reputation: 754

You could use AForge.net, it's available as a nuget package and gets the job done.

Here is an example of it. It's a winform application, but I use this library in WPF app as well.

[EDIT] Actually, I think I found what you're looking for, download this. It's a piece of code that has been written for a french azure contest. It's a motion detector written with aforge.net. There is 2 part to it, the first is a wpf client that capture movement. The second is an azure website where the image captured is uploaded automatically.

Upvotes: 1

Related Questions