1 | initial version |
Finally solved the problem by my own .
using a 3 iteration loop in my main loop:
for(int i=0; i<2; i++) { captureDevice>>frame; } This lowered the frame rates to 14fps , but with no delays( caused due to buffering ), Other approach i found is to create seperate thread for capturing frames and processing it .