0
2

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.

real-time-Personal-estimation(システム導入編)

Last updated at Posted at 2020-10-03

はじめに

基本的には,https://github.com/S-mishina/Personal-estimation
の続きのプログラムを書いていきます.

環境について

未定
windows10
python v3.8.3
virtualenv
yolov5 https://github.com/ultralytics/yolov5
anaconda

システム導入について(Yolo5導入について)

pythonの仮想環境
いろいろ吟味して今のところvirtualenvを使う予定です.
⓵virtualenvの導入

⓶仮想環境の導入
(1)適当なディレクトリに行く

(2)PowerShellでの切り替え

./activate.ps1

これで仮想環境に入れます.
参考にしたサイト
https://www.python.jp/install/windows/virtualenv.html
⓷Yoloの導入
yolo5を導入するためにはPyTorchが必要らしい.
自分が入れたコマンドを下記に示すが,各自の環境を以下のURLを参考に
入れたほうが良い
https://pytorch.org/get-started/locally/#mac-anaconda
(1)PyTorchの導入

//download.pytorch.org/whl/torch_stable.html

(2)yolov5の導入
ついにきましたyolo.yoloを導入していきます.

pip install -qr requirements.txt

導入について参考にしたサイト
https://konchangakita.hatenablog.com/entry/2020/08/17/220000

動作の確認

webカメラで動作を確認しました.
実行コマンド

python detect.py --source 0

プログラムの編集で下記を直すと動きます.

cap = cv2.VideoCapture(1 if s == '0' else s)#変更後
              #cap = cv2.VideoCapture(eval(s) if s.isnumeric() else s)#元のコード

参考にしたサイト
https://qiita.com/SatoshiGachiFujimoto/items/cb586b255eb220fdd8aa

最後に

次は学習フェイズに移ります.
ありがとうございました.

0
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?