Category "v4l2"

Duplicate camera stream not working with custom frame width and height

I have been able to duplicated my webcam stream on ubuntu with gst-launch-1.0 v4l2src device=/dev/video0 ! tee name=t ! queue ! v4l2sink device=/dev/video2 t.

Duplicate camera stream not working with custom frame width and height

I have been able to duplicated my webcam stream on ubuntu with gst-launch-1.0 v4l2src device=/dev/video0 ! tee name=t ! queue ! v4l2sink device=/dev/video2 t.

VideoCapture Release - Failed to Allocate Buffers (V4l2src) Jetson NX

I'm using a v4l2sink in gstreamer to tee a video stream that I can access in OpenCV. This works when I open the videocapture device and get frames, however at s

Convert YUV2 (YUYV) frames to RGB without use of OpenCV

I am trying to convert YUV2 frames generated by V4l2 to RGB. I was able to convert YUV2 to RGB cv2.cvtColor(im, cv2.COLOR_YUV2RGB_YUYV) using OpenCV. Currently