├── .gitignore ├── 3Dviewer.py ├── LICENSE ├── README.md ├── batch.py ├── demo_skeleton.gif ├── demo_skinned.gif ├── graphics_np.py ├── imitator.py ├── reader.py ├── skeleton.py ├── smpl_np.py └── vistool.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalciferZh/SMPL-AMC-Imitator/HEAD/.gitignore -------------------------------------------------------------------------------- /3Dviewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalciferZh/SMPL-AMC-Imitator/HEAD/3Dviewer.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalciferZh/SMPL-AMC-Imitator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalciferZh/SMPL-AMC-Imitator/HEAD/README.md -------------------------------------------------------------------------------- /batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalciferZh/SMPL-AMC-Imitator/HEAD/batch.py -------------------------------------------------------------------------------- /demo_skeleton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalciferZh/SMPL-AMC-Imitator/HEAD/demo_skeleton.gif -------------------------------------------------------------------------------- /demo_skinned.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalciferZh/SMPL-AMC-Imitator/HEAD/demo_skinned.gif -------------------------------------------------------------------------------- /graphics_np.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalciferZh/SMPL-AMC-Imitator/HEAD/graphics_np.py -------------------------------------------------------------------------------- /imitator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalciferZh/SMPL-AMC-Imitator/HEAD/imitator.py -------------------------------------------------------------------------------- /reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalciferZh/SMPL-AMC-Imitator/HEAD/reader.py -------------------------------------------------------------------------------- /skeleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalciferZh/SMPL-AMC-Imitator/HEAD/skeleton.py -------------------------------------------------------------------------------- /smpl_np.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalciferZh/SMPL-AMC-Imitator/HEAD/smpl_np.py -------------------------------------------------------------------------------- /vistool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CalciferZh/SMPL-AMC-Imitator/HEAD/vistool.py --------------------------------------------------------------------------------