Skip to content
Snippets Groups Projects
Commit e8834f15 authored by Joachim Tesch's avatar Joachim Tesch
Browse files

Use 100 expression shape models (was: 10)

parent bf985e7e
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@
bl_info = {
"name": "SMPL-X for Blender",
"author": "Joachim Tesch, Max Planck Institute for Intelligent Systems",
"version": (2023, 2, 27),
"version": (2023, 2, 28),
"blender": (3, 0, 0),
"location": "Viewport > Right panel",
"description": "SMPL-X for Blender",
......@@ -43,9 +43,9 @@ import pickle
# SMPL-X globals
USE_SMPLX_2020 = False
SMPLX_MODELFILE = "smplx_model_20210421.blend"
SMPLX_MODELFILE_300 = "smplx_model_300_20220615.blend"
SMPLX_MODELFILE_LH = "smplx_model_lh_300_20230214.blend"
SMPLX_MODELFILE_2020 = "smplx_model_2020_300_100_20230227.blend"
SMPLX_MODELFILE_300 = "smplx_model_20230228.blend"
SMPLX_MODELFILE_LH = "smplx_model_lh_20230228.blend"
SMPLX_MODELFILE_2020 = "smplx_model_2020_20230227.blend"
SMPLX_JOINT_NAMES = [
'pelvis','left_hip','right_hip','spine1','left_knee','right_knee','spine2','left_ankle','right_ankle','spine3', 'left_foot','right_foot','neck','left_collar','right_collar','head','left_shoulder','right_shoulder','left_elbow', 'right_elbow','left_wrist','right_wrist',
'jaw','left_eye_smplhf','right_eye_smplhf','left_index1','left_index2','left_index3','left_middle1','left_middle2','left_middle3','left_pinky1','left_pinky2','left_pinky3','left_ring1','left_ring2','left_ring3','left_thumb1','left_thumb2','left_thumb3','right_index1','right_index2','right_index3','right_middle1','right_middle2','right_middle3','right_pinky1','right_pinky2','right_pinky3','right_ring1','right_ring2','right_ring3','right_thumb1','right_thumb2','right_thumb3'
......
......@@ -21,14 +21,14 @@ fi
if [ -n "$BUILD_SMPLX_300" ]; then
# Build 300 shape model add-on
archivename=./smplx_blender_addon_300_$filedate.zip
archivename=./smplx_blender_addon_lh_$filedate.zip
echo "Generating $archivename"
if [ -f $archivename ]; then
echo "Removing old add-on: $archivename"
rm $archivename
fi
# --compression-method store
zip $archivename smplx_blender_addon/*.py smplx_blender_addon/*.md smplx_blender_addon/data/*.npz smplx_blender_addon/data/*.json smplx_blender_addon/data/*.png smplx_blender_addon/data/smplx_model_300_20220615.blend smplx_blender_addon/data/smplx_model_lh_300_20230214.blend
zip $archivename smplx_blender_addon/*.py smplx_blender_addon/*.md smplx_blender_addon/data/*.npz smplx_blender_addon/data/*.json smplx_blender_addon/data/*.png smplx_blender_addon/data/smplx_model_20230228.blend smplx_blender_addon/data/smplx_model_lh_20230228.blend
fi
if [ -n "$BUILD_SMPLX_2020" ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment