openpose只提取骨架
openpose extract only the skeleton
我正在使用 openpose in a docker container。
以下命令创建图像,其中检测到的关键点打印在原始图像上。
openpose -display=0 -image_dir=/data -write_images=/data -face=true -hand=true
我想要在黑色背景上没有原始图像的关键点。就像这里显示的那样:
我该怎么做?
您可以使用 --disable_blending
标志,如下所述:https://github.com/CMU-Perceptual-Computing-Lab/openpose/blob/master/doc/01_demo.md#main-flags
--disable_blending
: If enabled, it will render the results (keypoint skeletons or heatmaps) on a black background, not showing the original image. Related: part_to_show
, alpha_pose
, and alpha_pose
.
我正在使用 openpose in a docker container。 以下命令创建图像,其中检测到的关键点打印在原始图像上。
openpose -display=0 -image_dir=/data -write_images=/data -face=true -hand=true
我想要在黑色背景上没有原始图像的关键点。就像这里显示的那样:
我该怎么做?
您可以使用 --disable_blending
标志,如下所述:https://github.com/CMU-Perceptual-Computing-Lab/openpose/blob/master/doc/01_demo.md#main-flags
--disable_blending
: If enabled, it will render the results (keypoint skeletons or heatmaps) on a black background, not showing the original image. Related:part_to_show
,alpha_pose
, andalpha_pose
.