Hi, I work on real time application. My processing time of application is 25ms per frame with 9ms for the cap function of VideoCapture class.
Exemple of my code:
begin = clock();
Mat image2;
- cap >>image2;
- end = clock(); double
- elapsed_ms1 = double(end - begin) /CLOCKS_PER_SEC;
I would like know if possible by VideoCapture init option or other way to reduce the processing time to get frame of webcam.
thank, CC