OpenCV VideoWriter Framerate Issue

后端 未结 2 1402
别那么骄傲
别那么骄傲 2021-01-21 03:51

I\'m attempting to record video from a 1080p webcam into a file. I held a timer up in the video and in every trial the timestamp reported by a video player (VLC is what I used)

相关标签:
2条回答
  • You need to sync your read and write functions. Your code reads as fast as possible, and writes also as fast as possible. Your output video probably looks slow because writing the output happens faster than reading the input (since capture >> is waiting for your camera), and several identical frames are recorded.

    Writing without waiting or syncing means you may write the same content several times (what I think is happening here), or lose frames.

    If you want to keep having threads, you may, but you will need to make your write process wait until there is something new to write.

    Likewise to avoid losing frames or writing corrupted frames, you need the read process to wait until writing is done, so that frame can be safely overwritten.

    Since the threads need to wait for each other anyway, there's little point in threads at all.

    I'd rather recommend this much simpler way:

    for (;;) {
        capture >> frame;
        process(frame);  // whatever smart you need
        record << frame;
    }
    

    If you need parallelism, you'll need much more complex sync mechanism, and maybe some kind of fifo for your frames.

    0 讨论(0)
  • 2021-01-21 04:10

    I resolved my issue after a bit of debugging; it was an issue with VideoWriter being picky on the rate at which frames were fed to it.

    0 讨论(0)
提交回复
热议问题