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 3 years have passed since last update.

物体検出(Yolov3)で躓いたところの備忘録

Posted at

#Windows10でYolov3の物体検出をしました
https://github.com/qqwweee/keras-yolo3
こちらのYolov3を使わせていただきました。
躓いたら書き加えていきます。
個人的な備忘録ですのであしからず。

#train用のファイルの列挙方法
拡張子なしのjpegをtxtで列挙する必要があるのですが、便利なやり方がありました。
http://savannahmonitor.blog10.fc2.com/blog-entry-42.html
こちらのサイトを参考にさせていただきました。
for /f "delims=" %i in ('dir /b/a-d "パス"') do @(echo %~ni)

少し書き加えればファイルへの出力もできそうです。

#学習させた結果が反映されない
yolo_video.pyのmodel_pathを変えていないのが原因でした。
classes_pathも書き換えましょう。

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?