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
On Linux kernel 4.19.5 errors are generated when some commands are sent to camera in too quick succession. The error message is: ERROR [139644039424128] (types.h:188) get_xu(...). xioctl(UVCIOC_CTRL_QUERY) failed Last Error: Device or resource busy
Most reliable way to trigger this error is to create an rs2::pipeline, start it with start() and immediately use stream1.get_extrinsics_to(stream2) with appropriate streams. The get_extrinsics_to will throw with above error.
Current workaround is to wait around 3 seconds after starting the pipeline so that the camera can settle and then run get_extrinsics_to without issues.