You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get a segmentation fault in uvc.Capture(device) using the provided example.py with a SG12 camera connected via USB.
This happens because the pointer frame_desc.intervals is NULL here:
Providing a fixed framerate (I tried fps 1-1000) to uvc_get_stream_ctrl_format_size leads to error return code -51, i.e. Mode not supported.
The camera works with ffmpeg (although it drops frames frequently), so it is not broken. pyuvc works with a different webcam, so the installation is ok, too.
The text was updated successfully, but these errors were encountered:
Im getting the same error trying to run the example with a logitech c270. The test runs for a single loop of the 10 iteration and gets a segmentation fault...
I get a segmentation fault in
uvc.Capture(device)
using the providedexample.py
with aSG12
camera connected via USB.This happens because the pointer
frame_desc.intervals
isNULL
here:pyuvc/uvc.pyx
Line 669 in 066496b
Providing a fixed framerate (I tried fps 1-1000) to
uvc_get_stream_ctrl_format_size
leads to error return code-51
, i.e.Mode not supported
.The camera works with
ffmpeg
(although it drops frames frequently), so it is not broken.pyuvc
works with a different webcam, so the installation is ok, too.The text was updated successfully, but these errors were encountered: