updateFps method
Sets the FPS of the feed to the number of frames received in the past second
Implementation
void updateFps() {
framesPerSecond.value = _receivedFrames;
_receivedFrames = 0;
}
Sets the FPS of the feed to the number of frames received in the past second
void updateFps() {
framesPerSecond.value = _receivedFrames;
_receivedFrames = 0;
}