├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── app.py ├── assets ├── .gitignore ├── docs │ ├── changelog │ │ └── 2024-07-10.md │ ├── inference.gif │ ├── showcase.gif │ └── showcase2.gif ├── examples │ ├── driving │ │ ├── d0.mp4 │ │ ├── d10.mp4 │ │ ├── d11.mp4 │ │ ├── d12.mp4 │ │ ├── d13.mp4 │ │ ├── d14.mp4 │ │ ├── d18.mp4 │ │ ├── d19.mp4 │ │ ├── d3.mp4 │ │ ├── d6.mp4 │ │ └── d9.mp4 │ └── source │ │ ├── s0.jpg │ │ ├── s1.jpg │ │ ├── s10.jpg │ │ ├── s11.jpg │ │ ├── s12.jpg │ │ ├── s2.jpg │ │ ├── s3.jpg │ │ ├── s4.jpg │ │ ├── s5.jpg │ │ ├── s6.jpg │ │ ├── s7.jpg │ │ ├── s8.jpg │ │ └── s9.jpg ├── gradio_description_animation.md ├── gradio_description_retargeting.md ├── gradio_description_upload.md └── gradio_title.md ├── inference.py ├── readme.md ├── requirements.txt ├── speed.py └── src ├── config ├── __init__.py ├── argument_config.py ├── base_config.py ├── crop_config.py ├── inference_config.py └── models.yaml ├── gradio_pipeline.py ├── live_portrait_pipeline.py ├── live_portrait_wrapper.py ├── modules ├── __init__.py ├── appearance_feature_extractor.py ├── convnextv2.py ├── dense_motion.py ├── motion_extractor.py ├── spade_generator.py ├── stitching_retargeting_network.py ├── util.py └── warping_network.py └── utils ├── __init__.py ├── camera.py ├── crop.py ├── cropper.py ├── dependencies └── insightface │ ├── __init__.py │ ├── app │ ├── __init__.py │ ├── common.py │ └── face_analysis.py │ ├── data │ ├── __init__.py │ ├── image.py │ ├── images │ │ ├── Tom_Hanks_54745.png │ │ ├── mask_black.jpg │ │ ├── mask_blue.jpg │ │ ├── mask_green.jpg │ │ ├── mask_white.jpg │ │ └── t1.jpg │ ├── objects │ │ └── meanshape_68.pkl │ ├── pickle_object.py │ └── rec_builder.py │ ├── model_zoo │ ├── __init__.py │ ├── arcface_onnx.py │ ├── attribute.py │ ├── inswapper.py │ ├── landmark.py │ ├── model_store.py │ ├── model_zoo.py │ ├── retinaface.py │ └── scrfd.py │ └── utils │ ├── __init__.py │ ├── constant.py │ ├── download.py │ ├── face_align.py │ ├── filesystem.py │ ├── storage.py │ └── transform.py ├── face_analysis_diy.py ├── helper.py ├── io.py ├── landmark_runner.py ├── resources └── mask_template.png ├── retargeting_utils.py ├── rprint.py ├── timer.py ├── video.py └── viz.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/LICENSE -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/app.py -------------------------------------------------------------------------------- /assets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/.gitignore -------------------------------------------------------------------------------- /assets/docs/changelog/2024-07-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/docs/changelog/2024-07-10.md -------------------------------------------------------------------------------- /assets/docs/inference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/docs/inference.gif -------------------------------------------------------------------------------- /assets/docs/showcase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/docs/showcase.gif -------------------------------------------------------------------------------- /assets/docs/showcase2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/docs/showcase2.gif -------------------------------------------------------------------------------- /assets/examples/driving/d0.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/examples/driving/d0.mp4 -------------------------------------------------------------------------------- /assets/examples/driving/d10.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/examples/driving/d10.mp4 -------------------------------------------------------------------------------- /assets/examples/driving/d11.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/examples/driving/d11.mp4 -------------------------------------------------------------------------------- /assets/examples/driving/d12.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/examples/driving/d12.mp4 -------------------------------------------------------------------------------- /assets/examples/driving/d13.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/examples/driving/d13.mp4 -------------------------------------------------------------------------------- /assets/examples/driving/d14.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/examples/driving/d14.mp4 -------------------------------------------------------------------------------- /assets/examples/driving/d18.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/examples/driving/d18.mp4 -------------------------------------------------------------------------------- /assets/examples/driving/d19.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/examples/driving/d19.mp4 -------------------------------------------------------------------------------- /assets/examples/driving/d3.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/examples/driving/d3.mp4 -------------------------------------------------------------------------------- /assets/examples/driving/d6.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/examples/driving/d6.mp4 -------------------------------------------------------------------------------- /assets/examples/driving/d9.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/examples/driving/d9.mp4 -------------------------------------------------------------------------------- /assets/examples/source/s0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/examples/source/s0.jpg -------------------------------------------------------------------------------- /assets/examples/source/s1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/examples/source/s1.jpg -------------------------------------------------------------------------------- /assets/examples/source/s10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/examples/source/s10.jpg -------------------------------------------------------------------------------- /assets/examples/source/s11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/examples/source/s11.jpg -------------------------------------------------------------------------------- /assets/examples/source/s12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/examples/source/s12.jpg -------------------------------------------------------------------------------- /assets/examples/source/s2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/examples/source/s2.jpg -------------------------------------------------------------------------------- /assets/examples/source/s3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/examples/source/s3.jpg -------------------------------------------------------------------------------- /assets/examples/source/s4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/examples/source/s4.jpg -------------------------------------------------------------------------------- /assets/examples/source/s5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/examples/source/s5.jpg -------------------------------------------------------------------------------- /assets/examples/source/s6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/examples/source/s6.jpg -------------------------------------------------------------------------------- /assets/examples/source/s7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/examples/source/s7.jpg -------------------------------------------------------------------------------- /assets/examples/source/s8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/examples/source/s8.jpg -------------------------------------------------------------------------------- /assets/examples/source/s9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/examples/source/s9.jpg -------------------------------------------------------------------------------- /assets/gradio_description_animation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/gradio_description_animation.md -------------------------------------------------------------------------------- /assets/gradio_description_retargeting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/gradio_description_retargeting.md -------------------------------------------------------------------------------- /assets/gradio_description_upload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/gradio_description_upload.md -------------------------------------------------------------------------------- /assets/gradio_title.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/assets/gradio_title.md -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/inference.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/requirements.txt -------------------------------------------------------------------------------- /speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/speed.py -------------------------------------------------------------------------------- /src/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/config/argument_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/config/argument_config.py -------------------------------------------------------------------------------- /src/config/base_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/config/base_config.py -------------------------------------------------------------------------------- /src/config/crop_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/config/crop_config.py -------------------------------------------------------------------------------- /src/config/inference_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/config/inference_config.py -------------------------------------------------------------------------------- /src/config/models.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/config/models.yaml -------------------------------------------------------------------------------- /src/gradio_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/gradio_pipeline.py -------------------------------------------------------------------------------- /src/live_portrait_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/live_portrait_pipeline.py -------------------------------------------------------------------------------- /src/live_portrait_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/live_portrait_wrapper.py -------------------------------------------------------------------------------- /src/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/appearance_feature_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/modules/appearance_feature_extractor.py -------------------------------------------------------------------------------- /src/modules/convnextv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/modules/convnextv2.py -------------------------------------------------------------------------------- /src/modules/dense_motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/modules/dense_motion.py -------------------------------------------------------------------------------- /src/modules/motion_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/modules/motion_extractor.py -------------------------------------------------------------------------------- /src/modules/spade_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/modules/spade_generator.py -------------------------------------------------------------------------------- /src/modules/stitching_retargeting_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/modules/stitching_retargeting_network.py -------------------------------------------------------------------------------- /src/modules/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/modules/util.py -------------------------------------------------------------------------------- /src/modules/warping_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/modules/warping_network.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/camera.py -------------------------------------------------------------------------------- /src/utils/crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/crop.py -------------------------------------------------------------------------------- /src/utils/cropper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/cropper.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/__init__.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/app/__init__.py: -------------------------------------------------------------------------------- 1 | from .face_analysis import * 2 | -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/app/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/app/common.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/app/face_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/app/face_analysis.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/data/__init__.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/data/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/data/image.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/data/images/Tom_Hanks_54745.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/data/images/Tom_Hanks_54745.png -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/data/images/mask_black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/data/images/mask_black.jpg -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/data/images/mask_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/data/images/mask_blue.jpg -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/data/images/mask_green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/data/images/mask_green.jpg -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/data/images/mask_white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/data/images/mask_white.jpg -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/data/images/t1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/data/images/t1.jpg -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/data/objects/meanshape_68.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/data/objects/meanshape_68.pkl -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/data/pickle_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/data/pickle_object.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/data/rec_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/data/rec_builder.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/model_zoo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/model_zoo/__init__.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/model_zoo/arcface_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/model_zoo/arcface_onnx.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/model_zoo/attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/model_zoo/attribute.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/model_zoo/inswapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/model_zoo/inswapper.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/model_zoo/landmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/model_zoo/landmark.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/model_zoo/model_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/model_zoo/model_store.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/model_zoo/model_zoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/model_zoo/model_zoo.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/model_zoo/retinaface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/model_zoo/retinaface.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/model_zoo/scrfd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/model_zoo/scrfd.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/utils/__init__.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/utils/constant.py: -------------------------------------------------------------------------------- 1 | 2 | DEFAULT_MP_NAME = 'buffalo_l' 3 | 4 | -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/utils/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/utils/download.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/utils/face_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/utils/face_align.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/utils/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/utils/filesystem.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/utils/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/utils/storage.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/utils/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/dependencies/insightface/utils/transform.py -------------------------------------------------------------------------------- /src/utils/face_analysis_diy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/face_analysis_diy.py -------------------------------------------------------------------------------- /src/utils/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/helper.py -------------------------------------------------------------------------------- /src/utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/io.py -------------------------------------------------------------------------------- /src/utils/landmark_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/landmark_runner.py -------------------------------------------------------------------------------- /src/utils/resources/mask_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/resources/mask_template.png -------------------------------------------------------------------------------- /src/utils/retargeting_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/retargeting_utils.py -------------------------------------------------------------------------------- /src/utils/rprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/rprint.py -------------------------------------------------------------------------------- /src/utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/timer.py -------------------------------------------------------------------------------- /src/utils/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/video.py -------------------------------------------------------------------------------- /src/utils/viz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ganesh-tamang/LivePortrait_video/HEAD/src/utils/viz.py --------------------------------------------------------------------------------