Is there a list of known (cameralink) frame grabbers compatible with OpenCV? [closed]

asked 2016-06-20 06:09:53 -0600

perin gravatar image

I am actually interested in combining video/images from 2 framegrabbers (one of them a cameralink framegrabber) on the same machine using OpenCV. The indication of any cameralink frame grabber that works with OpenCV would be a great help.

edit retag flag offensive reopen merge delete

Closed for the following reason the question is answered, right answer was accepted by sturkmen
close date 2020-10-08 07:08:25.033245

Comments

i don't think, such a list exists.

usually, framegrabbers do not mount like an usb webcam, so you cannot use VideoCapture, but have to use a proprietary SDK (that should come with it) to access the video buffer. then again, it's easy to make a cv::Mat from that, ,and use opencv further on.

berak gravatar imageberak ( 2016-06-20 07:03:34 -0600 )edit