Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
smplx_blender_addon
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Joachim Tesch
smplx_blender_addon
Commits
e8834f15
Commit
e8834f15
authored
2 years ago
by
Joachim Tesch
Browse files
Options
Downloads
Patches
Plain Diff
Use 100 expression shape models (was: 10)
parent
bf985e7e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
__init__.py
+4
-4
4 additions, 4 deletions
__init__.py
build/make_addon_zip.sh
+2
-2
2 additions, 2 deletions
build/make_addon_zip.sh
with
6 additions
and
6 deletions
__init__.py
+
4
−
4
View file @
e8834f15
...
...
@@ -21,7 +21,7 @@
bl_info
=
{
"
name
"
:
"
SMPL-X for Blender
"
,
"
author
"
:
"
Joachim Tesch, Max Planck Institute for Intelligent Systems
"
,
"
version
"
:
(
2023
,
2
,
2
7
),
"
version
"
:
(
2023
,
2
,
2
8
),
"
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_
202302
14
.blend
"
SMPLX_MODELFILE_2020
=
"
smplx_model_2020_
300_100_
20230227.blend
"
SMPLX_MODELFILE_300
=
"
smplx_model_
20230228
.blend
"
SMPLX_MODELFILE_LH
=
"
smplx_model_lh_202302
28
.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
'
...
...
This diff is collapsed.
Click to expand it.
build/make_addon_zip.sh
+
2
−
2
View file @
e8834f15
...
...
@@ -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_
202302
14
.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_202302
28
.blend
fi
if
[
-n
"
$BUILD_SMPLX_2020
"
]
;
then
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment