Reputation: 8553
I am having trouble playing a video and grabbing frames. I need to grab frames to perform change detection among other things...Is there a way of playing a video and grabbing frames periodically (using a timer) such as using Windows Media Player control on a windows form?
N.B:
Upvotes: 0
Views: 2181
Reputation: 26495
I have done something similar to this in the past with DirectShow.
You are going to get much better results with DirectShow, since you can do you calculations frame by frame rather than on a timer.
These are both examples of motion capture, that use DirectShow: A B
Upvotes: 1