cax52492
@cax52492 (Satoki)

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

video_multiframe の意味を教えてください

解決したいこと

yolact-edgeでWebカメラを用いて、物体検知を実行する際、
下記を入力して、実行していきますが、
video_multiframeの値は何を示すのでしょうか?
PCの処理能力がない場合は、大きくしないほうがいいのでしょうか?

該当するソースコード


$ python eval.py --trained_model='$weights'\
                --score_threshold=0.6\
                --top_k=15\
                --video_multiframe=1\
                --video=0

自分で試したこと

とりあえず1で動かしましたが、事前に調べてもなかなか記載がなく、質問します

0

1Answer

単にネットをググっただけですが、video_multiframeパラメタに言及したサイトを3つ見つけました。参考になりますかね?

1.Savevideo now uses the evalvideo framework and suports --video_multiframe. It's much faster now!

2.Display a video in real-time. "--video_multiframe" will process that many frames at once for improved performance. If video_multiframe > 1, then the trt_batch_size should be increased to match it or surpass it.

3.eval.py実行時に"—video_multiframe=1"と指定するとFPSが落ちる代わりに少し遅延が改善されます

1Like

Your answer might help someone💌