I am new to Ubuntu and I want to work with OpenCV on my USB-3.0 Camera. I have the problem, that Ubuntu doesnt see it as an camera? The output from lshw is in my attached picture. Is it right, that ubuntu see it wrong? How can i mount it correctly? Thanks in advance
lsusb-output: Bus 004 Device 002: ID 2560:cld1
Camera: See3CAM_CU135 from e-consystems Ubuntu 18.04
dmesg-output:
[12390.573045] usb 4-1: new SuperSpeed USB device number 2 using xhci-hcd
[12390.584376] usb 4-1: LPM exit latency is zeroed, disabling LPM.
[12390.585285] usb 4-1: New USB device found, idVendor=2560, idProduct=c1d1
[12390.585546] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[12390.585580] usb 4-1: Product: See3CAM_CU135
[12390.585599] usb 4-1: Manufacturer: e-con systems
[12390.585617] usb 4-1: SerialNumber: 0E24480C
[12390.613855] hid-generic 0003:2560:C1D1.0001: hiddev0,hidraw0: USB HID v1.11 Device [e-con systems See3CAM_CU135] on usb-xhci-hcd.11.auto-1/input2
[12390.685248] uvcvideo: Found UVC 1.00 device See3CAM_CU135 (2560:c1d1)
[12390.688372] input: See3CAM_CU135 as /devices/platform/usb1/fe900000.dwc3/
[12390.688919] usbcore: registered new interface driver uvcvideo
[12390.688931] USB Video Class driver (1.1.1) 5 1 Answer
In the dmesg log, the camera is detected successfully:
[12390.585580] usb 4-1: Product: See3CAM_CU135
[12390.585599] usb 4-1: Manufacturer: e-con systems
[12390.585617] usb 4-1: SerialNumber: 0E24480C
[12390.613855] hid-generic 0003:2560:C1D1.0001:The camera is v4l2 compatible, so you can base any v4l2 application like guvcview, cheese, etc... to demonstrate some of the features of this camera. OpenCV is also compatible since it uses v4l2 to access the camera.