Reputation: 2710
I have a webcam which can take 8 mpx(3264x2448) photos. I took pictures using windows 8 Photo application and they were all 8 mpx.
Problem
I use aforge.video.DirectShow.VideoCaptureDevice just like the example in the link. But the problem is; When I list myVideoCaptureDevice.VideoCapabilities the max resolution is something like 1240 X 1080,
why aforge cannot detect upper resolutions, while the webcam provides?
by the way snapshotCapabilities is null although I set snapshot to true which means aforge does not detect any snapshotcapability for my webcam
thanks in advance.
Upvotes: 2
Views: 4394
Reputation: 2635
videoCapabilities lists resolutions in which you can stream a video. snapshotCapabilities lists resolutions in which you can take a snapshot.
Upvotes: 2