user6099747
user6099747

Reputation: 35

How can I use OpenCV to capture video stream of ueye cameras?

I'm used to work with logitech cameras in OpenCV. Appearently, VideoCapture() function takes as argument the number of the camera device in /dev/video. However, when using Ueye cameras, the entry for the device is /dev/ueye and not /dev/video* . Is there an easy way to retrieve the video stream from ueye cameras? Preferably keeping VideoCapture function.

Upvotes: 0

Views: 1535

Answers (1)

DanielM
DanielM

Reputation: 61

Usually you just Need to call the capture with an id like 0.

VideoCapture(0) works for me on Linux and Windows

Upvotes: 0

Related Questions