Hi, I'm currently working on a vision project using the Oak-1 camera, but I have been unable to get the number of frames saved to be consistent with the fps set (60 fps) in the code even though I used the setFps() function to specify the fps for the project. The max fps for the Oak-1 camera is 60 according to the documentation, so I know the fps is not too large. Any ideas on what can be done to resolve this?

  • erik replied to this.

    Hi GbekeAdesiyun ,
    Few things to check:

    • Are you receiving frames at 60FPS to the host?
    • Can the host computer write to the disk fast enough?
    • What's the time it consumes from when you read the frame from the queue (.get() or .tryGet()) until you successfully write the frame to the file?

    Hi,

    Thanks for the quick reply. No, I'm not receiving frames at 60FPS. I believe the host computer can write to the disk fast enough . Okay, I'll use those functions to find out the time consumed and get back to you.