LoginSignup
3
3

More than 3 years have passed since last update.

GoogleColaboratory 上でYOLOv5実行

Posted at

準備

YOLOv5.ipynb
!git clone https://github.com/ultralytics/yolov5
!pip install -r yolov5/requirements.txt

image.png

YOLOv5.ipynb
import os
path='/content/yolov5'

#作業ディレクトリに移動する
os.chdir(path)

!ls

image.png

実行

YOLOv5.ipynb
!python detect.py --source /content/yolov5/data/images/zidane.jpg

image.png

image.png

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