0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

YOLOv5で検出結果の出力を保存する方法(Google Colaboratory)

Posted at

はじめての投稿です。:bow:

該当の方法についてはGoogle Colabratoryでの話なので他の環境について把握していませんのであしからず。

先に結論。

! python detect.pyへのパス --source 動画ファイルへのパス 2> XXXXX.txt

例えば自分の場合、

! python /content/yolov5/detect.py --source /content/drive/MyDrive/otaku.mp4 2> list.txt

といった感じ。
ちなみに出力結果のファイル名の前に保存したいディレクトリのパスを記載すれば任意の場所にほぞんできます。

参考記事として、

があります。

もともと、上記の二番目のリンク先と同じことがやりたくてdetect.pyで出力されるフレームごとの検出結果を.txtでも.csvでもなんでもいいから保存できないかと考えていました。

参考記事の通り>を入れてもなぜか上手くいかず、かなりの時間を要しました:cold_sweat:

どうやら該当の処理のことをlinuxでのリダイレクトというものに該当するとのことで、またリダイレクトにも種類があるということがわかりました。(詳細は調べてください)

参考になれば幸いです。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?