-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
why not working in 4K? #36
Comments
I have never tested 4k camera. The library is based on DirectShow which is legacy technology, so that could be the reason. The other possibility is a lack of transfer rate. What VideoFormat are you using? I assume that you are using YUY2 format with USB2.0 interface. 3840 x 2160 image has 8294400 pixels. Video is compressed with YUY2 which compression rate is 66%, single frame is about 15MB. USB2.0 band width is 480Mbps in spec, but it actually may 240Mbps(=30MB). |
but use AmCap its can 4K 30fps, use WPFMediaKit.Core (also directshow ) it 4K12 FPS! |
Oh, really? var formats = UsbCamera.GetVideoFormat(cameraIndex);
// select the format you want.
foreach (var item in formats) Console.WriteLine(item); |
|
(1) which VideoFormat are you using? formats[2]? that is [Video], [MJPG], 3840,2160. |
Why fps = 1 or2 only at 3840 * 2160 resolution? if 1920 * 1080 its nomal at 30 fps.
The text was updated successfully, but these errors were encountered: