GStreamer pipeline output is a green solarized image stream?

0

I have a LI USB3 OG02B10 camera module I'm working with, currently we have no drivers for it but I was hoping to be able to at least stream the default images from it so I could do some lens evaluation as the documentation says it is uvc compliant.

If I v4l2-ctl --list-formats I get the following

ioctl: VIDIOC_ENUM_FMT Index : 0 Type : Video Capture Pixel Format: 'YUYV' Name : YUYV 4:2:2

So I tried the following pipeline

gst-launch-1.0 -v v4l2src device =/dev/video0 ! video/x-raw,format=YUY2 ! videoconvert ! xvimagesink

which gets a green somewhat solarized image stream, and I get the following from the pipeline output

/GstPipeline:pipeline0/GstCapsFilter:capsfilter0.GstPad:sink: caps = video/x-raw, format=(string)YUY2, width=(int)1600, height=(int)1300, framerate=(fraction)60/1, pixel-aspect-ratio=(fraction)1/1, colorimetry=(string)bt709, interlace-mode=(string)progressive

Excuse my ignorance but is it possible to stream this camera with v4l2/Gstreamer or do will I need a driver to do anymore?

Any advice much appreciated.

kind regards Nigel.

Nigel Gardiner

Posted 2020-02-24T19:24:55.933

Reputation: 1

No answers