updateFps method

void updateFps()

Sets the FPS of the feed to the number of frames received in the past second

Implementation

void updateFps() {
  framesPerSecond.value = _receivedFrames;
  _receivedFrames = 0;
}