├── .dockerignore ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── example_data │ ├── images │ │ └── demo1.jpg │ └── videos │ │ └── pose1.mp4 └── figures │ ├── latent_fusion.png │ ├── model_structure.png │ ├── preview_1.gif │ ├── preview_2.gif │ ├── preview_3.gif │ ├── preview_4.gif │ ├── preview_5.gif │ └── preview_6.gif ├── cog.yaml ├── configs └── test.yaml ├── constants.py ├── environment.yaml ├── inference.py ├── mimicmotion ├── __init__.py ├── dwpose │ ├── .gitignore │ ├── __init__.py │ ├── dwpose_detector.py │ ├── onnxdet.py │ ├── onnxpose.py │ ├── preprocess.py │ ├── util.py │ └── wholebody.py ├── modules │ ├── __init__.py │ ├── attention.py │ ├── pose_net.py │ └── unet.py ├── pipelines │ └── pipeline_mimicmotion.py └── utils │ ├── __init__.py │ ├── geglu_patch.py │ ├── loader.py │ └── utils.py └── predict.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/README.md -------------------------------------------------------------------------------- /assets/example_data/images/demo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/assets/example_data/images/demo1.jpg -------------------------------------------------------------------------------- /assets/example_data/videos/pose1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/assets/example_data/videos/pose1.mp4 -------------------------------------------------------------------------------- /assets/figures/latent_fusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/assets/figures/latent_fusion.png -------------------------------------------------------------------------------- /assets/figures/model_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/assets/figures/model_structure.png -------------------------------------------------------------------------------- /assets/figures/preview_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/assets/figures/preview_1.gif -------------------------------------------------------------------------------- /assets/figures/preview_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/assets/figures/preview_2.gif -------------------------------------------------------------------------------- /assets/figures/preview_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/assets/figures/preview_3.gif -------------------------------------------------------------------------------- /assets/figures/preview_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/assets/figures/preview_4.gif -------------------------------------------------------------------------------- /assets/figures/preview_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/assets/figures/preview_5.gif -------------------------------------------------------------------------------- /assets/figures/preview_6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/assets/figures/preview_6.gif -------------------------------------------------------------------------------- /cog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/cog.yaml -------------------------------------------------------------------------------- /configs/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/configs/test.yaml -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- 1 | # w/h apsect ratio 2 | ASPECT_RATIO = 9 / 16 3 | -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/environment.yaml -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/inference.py -------------------------------------------------------------------------------- /mimicmotion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mimicmotion/dwpose/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /mimicmotion/dwpose/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mimicmotion/dwpose/dwpose_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/mimicmotion/dwpose/dwpose_detector.py -------------------------------------------------------------------------------- /mimicmotion/dwpose/onnxdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/mimicmotion/dwpose/onnxdet.py -------------------------------------------------------------------------------- /mimicmotion/dwpose/onnxpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/mimicmotion/dwpose/onnxpose.py -------------------------------------------------------------------------------- /mimicmotion/dwpose/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/mimicmotion/dwpose/preprocess.py -------------------------------------------------------------------------------- /mimicmotion/dwpose/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/mimicmotion/dwpose/util.py -------------------------------------------------------------------------------- /mimicmotion/dwpose/wholebody.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/mimicmotion/dwpose/wholebody.py -------------------------------------------------------------------------------- /mimicmotion/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mimicmotion/modules/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/mimicmotion/modules/attention.py -------------------------------------------------------------------------------- /mimicmotion/modules/pose_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/mimicmotion/modules/pose_net.py -------------------------------------------------------------------------------- /mimicmotion/modules/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/mimicmotion/modules/unet.py -------------------------------------------------------------------------------- /mimicmotion/pipelines/pipeline_mimicmotion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/mimicmotion/pipelines/pipeline_mimicmotion.py -------------------------------------------------------------------------------- /mimicmotion/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mimicmotion/utils/geglu_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/mimicmotion/utils/geglu_patch.py -------------------------------------------------------------------------------- /mimicmotion/utils/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/mimicmotion/utils/loader.py -------------------------------------------------------------------------------- /mimicmotion/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/mimicmotion/utils/utils.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/MimicMotion/HEAD/predict.py --------------------------------------------------------------------------------