Save an image using Qt on disk and analyze it
Save an image with OpenCV on disk and analyze it
Check if there's something off in each image and also compare the two.
@SGaist looking at the QCamera example gave me a lot of info to fix my issue.
I was using the QCamera wrongly.
Too many start/stop followed by lock/unlock etc.
Now the image is captured correctly.
QCheckBox *cam = new QCheckBox(ci.description());
vailableCameras->setItemWidget(lwi, cam);
Hurts my feelings. See https://forum.qt.io/post/486329 it applies also to QListWidgetItem with the only difference that you don't, obviously, specify a column
With the techniques used in QOrbitCameraController you cannot yet handle wheel events. This will be implemented in Qt 5.8 AFAIK.
If you want to have something now you will have to implement it the old fashoined way i.e. override the virtual function void Qt3DWindow::wheelEvent(QWheelEvent *ev) and there change the field of view of the camera().