├── .gitignore ├── Dockerfile ├── HSI_addon-zzy.zip ├── README.md ├── app.py ├── config └── config_sample_synhsi.yaml ├── constants.py ├── datasets ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-39.pyc │ └── trumans.cpython-39.pyc └── trumans.py ├── models ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── joints_to_smplx.cpython-39.pyc │ └── synhsi.cpython-39.pyc ├── joints_to_smplx.py └── synhsi.py ├── not_used.py ├── pytorch3d.py ├── requirements.txt ├── sample_hsi.py ├── static ├── background.glb ├── basin.glb ├── bed.glb ├── flower.glb ├── index.css ├── index.js ├── kitchen_chair_1.glb ├── kitchen_chair_2.glb ├── office_chair.glb ├── room.glb ├── sofa.glb ├── table.glb ├── tutorial.gif └── wc.glb ├── templates └── index.html ├── trumans ├── Data_release │ └── download_dataset.txt ├── config │ ├── config_sample_synhsi.yaml │ ├── config_train_synhsi_trumans.yaml │ ├── dataset │ │ └── trumans.yaml │ ├── guidance │ │ ├── pelvis.yaml │ │ └── right_hand.yaml │ ├── model │ │ ├── model_smplx.yaml │ │ ├── synhsi_body.yaml │ │ └── synhsi_hand.yaml │ └── sampler │ │ ├── pelvis.yaml │ │ └── right_hand.yaml ├── constants.py ├── datasets │ ├── __init__.py │ └── trumans.py ├── models │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── joints_to_smplx.cpython-39.pyc │ │ └── synhsi.cpython-39.pyc │ ├── cfg.py │ ├── joints_to_smplx.py │ └── synhsi.py ├── train_synhsi.py └── utils.py ├── trumans_flask_demo.mp4 ├── tutorial.mp4 ├── tutorial └── Screencast from 2024年03月13日 15时54分11秒.webm ├── utils.py └── visualize_smplx_motion ├── 2023-02-12@22-16-01_smplx_results.pkl ├── load_smplx_animatioin_clear.py └── smplx_vis_blender.mp4 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/Dockerfile -------------------------------------------------------------------------------- /HSI_addon-zzy.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/HSI_addon-zzy.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/app.py -------------------------------------------------------------------------------- /config/config_sample_synhsi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/config/config_sample_synhsi.yaml -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/constants.py -------------------------------------------------------------------------------- /datasets/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['trumans'] -------------------------------------------------------------------------------- /datasets/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/datasets/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /datasets/__pycache__/trumans.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/datasets/__pycache__/trumans.cpython-39.pyc -------------------------------------------------------------------------------- /datasets/trumans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/datasets/trumans.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/models/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /models/__pycache__/joints_to_smplx.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/models/__pycache__/joints_to_smplx.cpython-39.pyc -------------------------------------------------------------------------------- /models/__pycache__/synhsi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/models/__pycache__/synhsi.cpython-39.pyc -------------------------------------------------------------------------------- /models/joints_to_smplx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/models/joints_to_smplx.py -------------------------------------------------------------------------------- /models/synhsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/models/synhsi.py -------------------------------------------------------------------------------- /not_used.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/not_used.py -------------------------------------------------------------------------------- /pytorch3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/pytorch3d.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample_hsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/sample_hsi.py -------------------------------------------------------------------------------- /static/background.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/static/background.glb -------------------------------------------------------------------------------- /static/basin.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/static/basin.glb -------------------------------------------------------------------------------- /static/bed.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/static/bed.glb -------------------------------------------------------------------------------- /static/flower.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/static/flower.glb -------------------------------------------------------------------------------- /static/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/static/index.css -------------------------------------------------------------------------------- /static/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/static/index.js -------------------------------------------------------------------------------- /static/kitchen_chair_1.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/static/kitchen_chair_1.glb -------------------------------------------------------------------------------- /static/kitchen_chair_2.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/static/kitchen_chair_2.glb -------------------------------------------------------------------------------- /static/office_chair.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/static/office_chair.glb -------------------------------------------------------------------------------- /static/room.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/static/room.glb -------------------------------------------------------------------------------- /static/sofa.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/static/sofa.glb -------------------------------------------------------------------------------- /static/table.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/static/table.glb -------------------------------------------------------------------------------- /static/tutorial.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/static/tutorial.gif -------------------------------------------------------------------------------- /static/wc.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/static/wc.glb -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/templates/index.html -------------------------------------------------------------------------------- /trumans/Data_release/download_dataset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/trumans/Data_release/download_dataset.txt -------------------------------------------------------------------------------- /trumans/config/config_sample_synhsi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/trumans/config/config_sample_synhsi.yaml -------------------------------------------------------------------------------- /trumans/config/config_train_synhsi_trumans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/trumans/config/config_train_synhsi_trumans.yaml -------------------------------------------------------------------------------- /trumans/config/dataset/trumans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/trumans/config/dataset/trumans.yaml -------------------------------------------------------------------------------- /trumans/config/guidance/pelvis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/trumans/config/guidance/pelvis.yaml -------------------------------------------------------------------------------- /trumans/config/guidance/right_hand.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/trumans/config/guidance/right_hand.yaml -------------------------------------------------------------------------------- /trumans/config/model/model_smplx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/trumans/config/model/model_smplx.yaml -------------------------------------------------------------------------------- /trumans/config/model/synhsi_body.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/trumans/config/model/synhsi_body.yaml -------------------------------------------------------------------------------- /trumans/config/model/synhsi_hand.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/trumans/config/model/synhsi_hand.yaml -------------------------------------------------------------------------------- /trumans/config/sampler/pelvis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/trumans/config/sampler/pelvis.yaml -------------------------------------------------------------------------------- /trumans/config/sampler/right_hand.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/trumans/config/sampler/right_hand.yaml -------------------------------------------------------------------------------- /trumans/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/trumans/constants.py -------------------------------------------------------------------------------- /trumans/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['trumans'] -------------------------------------------------------------------------------- /trumans/datasets/trumans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/trumans/datasets/trumans.py -------------------------------------------------------------------------------- /trumans/models/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | __all__ = ['synhsi', 'joints_to_smplx'] -------------------------------------------------------------------------------- /trumans/models/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/trumans/models/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /trumans/models/__pycache__/joints_to_smplx.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/trumans/models/__pycache__/joints_to_smplx.cpython-39.pyc -------------------------------------------------------------------------------- /trumans/models/__pycache__/synhsi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/trumans/models/__pycache__/synhsi.cpython-39.pyc -------------------------------------------------------------------------------- /trumans/models/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/trumans/models/cfg.py -------------------------------------------------------------------------------- /trumans/models/joints_to_smplx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/trumans/models/joints_to_smplx.py -------------------------------------------------------------------------------- /trumans/models/synhsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/trumans/models/synhsi.py -------------------------------------------------------------------------------- /trumans/train_synhsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/trumans/train_synhsi.py -------------------------------------------------------------------------------- /trumans/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/trumans/utils.py -------------------------------------------------------------------------------- /trumans_flask_demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/trumans_flask_demo.mp4 -------------------------------------------------------------------------------- /tutorial.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/tutorial.mp4 -------------------------------------------------------------------------------- /tutorial/Screencast from 2024年03月13日 15时54分11秒.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/tutorial/Screencast from 2024年03月13日 15时54分11秒.webm -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/utils.py -------------------------------------------------------------------------------- /visualize_smplx_motion/2023-02-12@22-16-01_smplx_results.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/visualize_smplx_motion/2023-02-12@22-16-01_smplx_results.pkl -------------------------------------------------------------------------------- /visualize_smplx_motion/load_smplx_animatioin_clear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/visualize_smplx_motion/load_smplx_animatioin_clear.py -------------------------------------------------------------------------------- /visualize_smplx_motion/smplx_vis_blender.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnnan/trumans_utils/HEAD/visualize_smplx_motion/smplx_vis_blender.mp4 --------------------------------------------------------------------------------