7
4

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

ChainerCV YOLO 動かしてみた

Posted at

要約

  • ChainerCVでもYOLOを利用できるようになった
  • 2018/05/16時点ではソースコードからインストールを行う必要がある
  • YOLOv2・YOLOv3の2種類が準備されている

概要

  • ChainerCV(github)にてYOLOが利用できるようになったらしいので動かしてみた

環境

  • OS: Windows 10 1803 WSL Ubuntu18.04
  • python: 3.6.5
  • pip: 10.0.1

準備

  • 2018/05/16時点の最新バージョンである0.9.0にはまだ組み込まれていなかった
  • リポジトリではYOLOのモデルを見つけられたのでソースコードからのインストールを試みた
$ git clone https://github.com/chainer/chainercv
$ cd chainercv
$ pip install -e .

認識

  • どこかで見たことのある以下の画像を認識させた

sample.jpg

YOLOv2

$ python examples/yolo/demo.py sample.jpg

sample_yolov2.jpeg

YOLOv3

$ python examples/yolo/demo.py sample.jpg --model yolo_v3

sample_yolov3.jpeg

7
4
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
7
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?