We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7308bf2 commit 3ebce70Copy full SHA for 3ebce70
examples/demo.py
@@ -61,6 +61,8 @@ def main(model_folder, model_type='smplx', ext='npz',
61
help='The type of model to load')
62
parser.add_argument('--gender', type=str, default='neutral',
63
help='The gender of the model')
64
+ parser.add_argument('--ext', type=str, default='npz',
65
+ help='Which extension to use for loading')
66
parser.add_argument('--plot-joints', default=False,
67
type=lambda arg: arg.lower() in ['true', '1'],
68
help='The path to the model folder')
@@ -75,6 +77,8 @@ def main(model_folder, model_type='smplx', ext='npz',
75
77
plot_joints = args.plot_joints
76
78
use_face_contour = args.use_face_contour
79
gender = args.gender
80
+ ext = args.ext
81
- main(model_folder, model_type, gender=gender, plot_joints=plot_joints,
82
+ main(model_folder, model_type, ext=ext,
83
+ gender=gender, plot_joints=plot_joints,
84
use_face_contour=use_face_contour)
0 commit comments