Taking a photo with Qt
-
Hello,
I am taking a photo with
@ camera->searchAndLock();
imageCapture->capture();@whereby
@ QCamera *camera;
QCameraImageCapture *imageCapture;@Now, I want that @imageCapture->capture();@ is triggered only after camera is ready for taking pictures, i.e. focusing is finished.
How to do so?
Thank you