Spaces:
Build error
Build error
Create smplx/__init__.py
Browse files- lib/smplx/__init__.py +30 -0
lib/smplx/__init__.py
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# -*- coding: utf-8 -*-
|
| 2 |
+
|
| 3 |
+
# Max-Planck-Gesellschaft zur Förderung der Wissenschaften e.V. (MPG) is
|
| 4 |
+
# holder of all proprietary rights on this computer program.
|
| 5 |
+
# You can only use this computer program if you have closed
|
| 6 |
+
# a license agreement with MPG or you get the right to use the computer
|
| 7 |
+
# program from someone who is authorized to grant you that right.
|
| 8 |
+
# Any use of the computer program without a valid license is prohibited and
|
| 9 |
+
# liable to prosecution.
|
| 10 |
+
#
|
| 11 |
+
# Copyright©2019 Max-Planck-Gesellschaft zur Förderung
|
| 12 |
+
# der Wissenschaften e.V. (MPG). acting on behalf of its Max Planck Institute
|
| 13 |
+
# for Intelligent Systems. All rights reserved.
|
| 14 |
+
#
|
| 15 |
+
# Contact: ps-license@tuebingen.mpg.de
|
| 16 |
+
|
| 17 |
+
from .body_models import (
|
| 18 |
+
create,
|
| 19 |
+
SMPL,
|
| 20 |
+
SMPLH,
|
| 21 |
+
SMPLX,
|
| 22 |
+
MANO,
|
| 23 |
+
FLAME,
|
| 24 |
+
build_layer,
|
| 25 |
+
SMPLLayer,
|
| 26 |
+
SMPLHLayer,
|
| 27 |
+
SMPLXLayer,
|
| 28 |
+
MANOLayer,
|
| 29 |
+
FLAMELayer,
|
| 30 |
+
)
|