FPS fps confirmation on jetson tx2

I used googlenet and resnet to detect my face. I want to check fps for objective results. Is there any way to check it, other than adding a code?

Hi,

If a video input is acceptable, you can just calculate the fps via (total execution time) / (total frame number).
Total execution time can be measured with time.

time [app]

Thanks.