Input shape : (1, 3, 240, 320)
Range : [0, 255]
Automatically downloads the onnx and prototxt files on the first run. It is necessary to be connected to the Internet while downloading.
For the sample image,
$ python3 posenet.py
If you want to specify the input image, put the image path after the --input
option.
You can use --savepath
option to change the name of the output file to save.
$ python3 posenet.py --input IMAGE_PATH --savepath SAVE_IMAGE_PATH
By adding the --video
option, you can input the video.
If you pass 0
as an argument to VIDEO_PATH, you can use the webcam input instead of the video file.
$ python3 posenet.py --video VIDEO_PATH
Also you can set detection threshold by adding the --threshold-pose
and --threshold-part
option.
Default threshold-pose value is 0.15 , threshold-pose value 0.1.
$ python3 posenet.py --threshold-pose 0.15 --threshold-pose 0.1
You can select a pretrained model by specifying -a 50, 75 ,100 or 101(default).
Pytorch 1.13
ONNX opset=14