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.

AlphaPoseのコマンド一覧

Last updated at Posted at 2022-11-22

はじめに

今回はAlphaPoseを実行する際に使えるコマンドを紹介します。
全てを網羅できていないかもしれませんが、ご了承ください。

コマンド一覧

これから紹介するコマンドは以下の実行コマンドに付随するオプションコマンドです。

python scripts/demo_inference.py

デモオプション

(必須)モデルファイルsimple.yamlを設定

--cfg simple.yaml

(必須)チェックポイントファイル256x192.pthを設定

--checkpoint 256x192.pth

Pytorchでシングルプロセスを使用

--sp

使用するGPU、CPUの指定
(カンマ区切りで複数指定可能。-1 : CPU。0, 1, 2 ... : GPU)

--gpus -1

フリップテストの設定
(フリップテストによって精度が上昇する)

--flip

検出器の設定
(デフォルトではyolov3-sppが使われる)

--detector yolox-x

検出結果の出力ファイルの設定

--detfile

画像を可視化

--vis 

人のバウンディングボックスを表示

--showbox

画像オプション

入力する画像img.pngを設定

--image img.png

入力する画像ディレクトリimg_dirを設定
(ディレクトリ内の全ての画像にAlphaPoseを動作させる)

--indir img_dir

画像ディレクトリ内でも動作させる画像をファイルdemo.txtで指定
--indirと使う)

--list demo.txt

AlphaPose動作後の動画像出力先outputを指定

--outdir output

画像として結果を保存する

--save_img

ビデオオプション

ビデオファイルinput.mp4を設定

--video input.mp4

ウェブカメラを設定
(例:複数台あるうちの1台目を指定)

--webcam 0

レンダリングの高速化
(動画の全フレームを処理できない(FPSが低下する)代わりにリアルタイム処理を行う)

--vis_fast

追跡オプション

Re-IDトラッキングを設定

--pose_track

MOTトラッキングを設定

--detector tracker

おわりに

今回はAlphaPose内のdemo_inference.pyに書かれている内容を読み取ってコマンド一覧を作成してみました。
公式のコマンド一覧ページを見つけました。
指摘等あればコメントを頂けると幸いです。
役に立ったらLGTMをお願いします!

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?