Is there a list of known (cameralink) frame grabbers compatible with OpenCV? [closed]
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.
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.