DC1394 machine vision camera
-
Hi, we are are working with several machine vision cameras. One can be using with libdc1394, and the other requires a proprietary lib that provides frames.
What is the best way to display camera output from something like this? I'd like to have some C++ code that captures the frames from the camera, and then send the frames to be displayed in QML.
Thanks,
Cliff -
Hi,
One possible way is to write a small QMultimedia backend that provides a camera based on the libraries your are using.
Or maybe a QMediaObject subclass with matching QMediaService that returns the needed controls.
Hope it helps
-
The backend allows you to work with both widgets and QML.
AFAIK the QQuickImageProvider is used the other way around, you ask images to it.
Don't be afraid of the task, a QtMultimedia backend is really not that hard to implement.