Reputation: 35
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
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