Skip to content
Advertisement

What causes the measured fps to be different from the expected yet possible fps?

What causes the measured fps to be different from the expected yet possible fps?

My webcam has 30 fps (maximum) and the measured fps is only about 20 fps.

The logic behind my code:

  • One iteration shows one frame.
  • The total time for one iteration is the sum of tc, td and d.
  • The reciprocal of the sum is the measured fps.
  • delay passed to waitKey is calculated by subtracting tc+td from the reciprocal of the expected FPS. Or, delay=(1/FPS - tc - td)*1000 (milliseconds).

enter image description here

JavaScript

Advertisement

Answer

According to the OpenCV Documentation:

The function waitKey waits for a key event infinitely (when delay <= 0 ) or for delay milliseconds, when it is positive. Since the OS has a minimum time between switching threads, the function will NOT wait exactly delay ms, it will wait AT LEAST delay ms, depending on what else is running on your computer at that time. It returns the code of the pressed key or -1 if no key was pressed before the specified time had elapsed.

Therefore, in my opinion (correct if I am wrong), always use waitKey(1) when streaming from a webcam to

  • let the webcam itself adjust its possible maximum fps
  • reduce lagging because of unpredictable waitKey delay
Advertisement