Reputation: 455
Is there any sample project use DirectShow.NET library to capture image and capture video in the same project?
Upvotes: 4
Views: 9747
Reputation: 69662
A typical problem you are to face is that video capture devices are exclusive use resources. If you are capturing video, you cannot capture stills separately, you need to grab individual video frames out of the running pipeline (i.e. snapshots) and they are your images/stills. This certainly assumes that you are interested in capturing from the same hardware, otherwise nothing prevents from using independent devices simultaneously, via the same or different APIs.
Upvotes: 1
Reputation: 21
Yep, there are actually many, but here is one that got me started years ago.
http://www.codeproject.com/Articles/10248/Motion-Detection-Algorithms
Upvotes: 2