├── LICENSE ├── README.md ├── __init__.py ├── animations ├── FEIFEI4--d30.jpg ├── FEIFEI4--d30_concat.jpg ├── FEIFEI4--d9.jpg ├── FEIFEI4--d9_concat.jpg ├── s12--d9.jpg ├── s12--d9_concat.jpg ├── s5--d12.jpg ├── s5--d12_concat.jpg ├── s5--d19.jpg ├── s5--d19_concat.jpg ├── s5--d30.jpg ├── s5--d30_concat.jpg ├── s5--d38.jpg ├── s5--d38_concat.jpg ├── s5--d8.jpg ├── s5--d8_concat.jpg ├── s5--d9.jpg └── s5--d9_concat.jpg ├── assets ├── docs │ ├── LivePortrait-Gradio-2024-07-19.jpg │ ├── animals-mode-gradio-2024-08-02.jpg │ ├── changelog │ │ ├── 2024-07-10.md │ │ ├── 2024-07-19.md │ │ ├── 2024-07-24.md │ │ ├── 2024-08-02.md │ │ ├── 2024-08-05.md │ │ ├── 2024-08-06.md │ │ └── 2024-08-19.md │ ├── directory-structure.md │ ├── driving-option-multiplier-2024-08-02.jpg │ ├── editing-portrait-2024-08-06.jpg │ ├── how-to-install-ffmpeg.md │ ├── image-driven-image-2024-08-19.jpg │ ├── image-driven-portrait-animation-2024-08-19.jpg │ ├── inference-animals.gif │ ├── inference.gif │ ├── pose-edit-2024-07-24.jpg │ ├── retargeting-video-2024-08-02.jpg │ ├── showcase.gif │ ├── showcase2.gif │ └── speed.md └── examples │ ├── driving │ ├── aggrieved.pkl │ ├── d0.mp4 │ ├── d1.pkl │ ├── d10.mp4 │ ├── d11.mp4 │ ├── d12.jpg │ ├── d12.mp4 │ ├── d12.pkl │ ├── d13.mp4 │ ├── d14.mp4 │ ├── d18.mp4 │ ├── d19.jpg │ ├── d19.mp4 │ ├── d19.pkl │ ├── d2.pkl │ ├── d20.mp4 │ ├── d3.mp4 │ ├── d30.jpg │ ├── d30.pkl │ ├── d38.jpg │ ├── d38.pkl │ ├── d5.pkl │ ├── d6.mp4 │ ├── d7.pkl │ ├── d8.jpg │ ├── d8.pkl │ ├── d9.jpg │ ├── d9.mp4 │ ├── d9.pkl │ ├── laugh.pkl │ ├── open_lip.pkl │ ├── shake_face.pkl │ ├── shy.pkl │ ├── talking.pkl │ └── wink.pkl │ └── source │ ├── FEIFEI4.jpg │ ├── d9.jpg │ ├── d9.pkl │ ├── s0.jpg │ ├── s1.jpg │ ├── s10.jpg │ ├── s11.jpg │ ├── s12.jpg │ ├── s13.mp4 │ ├── s18.mp4 │ ├── s2.jpg │ ├── s20.mp4 │ ├── s22.jpg │ ├── s23.jpg │ ├── s25.jpg │ ├── s29.mp4 │ ├── s3.jpg │ ├── s30.jpg │ ├── s31.jpg │ ├── s32.jpg │ ├── s32.mp4 │ ├── s36.jpg │ └── s38.jpg ├── inference.py ├── nodes.py ├── pretrained_weights └── insightface │ └── models │ └── buffalo_l │ ├── 2d106det.onnx │ └── det_10g.onnx ├── requirements.txt ├── speed.py └── src ├── __pycache__ ├── live_portrait_pipeline.cpython-310.pyc └── live_portrait_wrapper.cpython-310.pyc ├── config ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── argument_config.cpython-310.pyc │ ├── base_config.cpython-310.pyc │ ├── crop_config.cpython-310.pyc │ └── inference_config.cpython-310.pyc ├── argument_config.py ├── base_config.py ├── crop_config.py ├── inference_config.py └── models.yaml ├── directory └── text.txt ├── gradio_pipeline.py ├── live_portrait_pipeline.py ├── live_portrait_pipeline_animal.py ├── live_portrait_wrapper.py ├── modules ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── appearance_feature_extractor.cpython-310.pyc │ ├── convnextv2.cpython-310.pyc │ ├── dense_motion.cpython-310.pyc │ ├── motion_extractor.cpython-310.pyc │ ├── spade_generator.cpython-310.pyc │ ├── stitching_retargeting_network.cpython-310.pyc │ ├── util.cpython-310.pyc │ └── warping_network.cpython-310.pyc ├── 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 ├── __pycache__ ├── __init__.cpython-310.pyc ├── camera.cpython-310.pyc ├── crop.cpython-310.pyc ├── cropper.cpython-310.pyc ├── face_analysis_diy.cpython-310.pyc ├── filter.cpython-310.pyc ├── helper.cpython-310.pyc ├── human_landmark_runner.cpython-310.pyc ├── io.cpython-310.pyc ├── retargeting_utils.cpython-310.pyc ├── rprint.cpython-310.pyc ├── timer.cpython-310.pyc └── video.cpython-310.pyc ├── animal_landmark_runner.py ├── camera.py ├── check_windows_port.py ├── crop.py ├── cropper.py ├── dependencies ├── XPose │ ├── config_model │ │ ├── UniPose_SwinT.py │ │ └── coco_transformer.py │ ├── models │ │ ├── UniPose │ │ │ ├── __init__.py │ │ │ ├── attention.py │ │ │ ├── backbone.py │ │ │ ├── deformable_transformer.py │ │ │ ├── fuse_modules.py │ │ │ ├── mask_generate.py │ │ │ ├── ops │ │ │ │ ├── functions │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── ms_deform_attn_func.py │ │ │ │ ├── modules │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ms_deform_attn.py │ │ │ │ │ └── ms_deform_attn_key_aware.py │ │ │ │ ├── setup.py │ │ │ │ ├── src │ │ │ │ │ ├── cpu │ │ │ │ │ │ ├── ms_deform_attn_cpu.cpp │ │ │ │ │ │ └── ms_deform_attn_cpu.h │ │ │ │ │ ├── cuda │ │ │ │ │ │ ├── ms_deform_attn_cuda.cu │ │ │ │ │ │ ├── ms_deform_attn_cuda.h │ │ │ │ │ │ └── ms_deform_im2col_cuda.cuh │ │ │ │ │ ├── ms_deform_attn.h │ │ │ │ │ └── vision.cpp │ │ │ │ └── test.py │ │ │ ├── position_encoding.py │ │ │ ├── swin_transformer.py │ │ │ ├── transformer_deformable.py │ │ │ ├── transformer_vanilla.py │ │ │ ├── unipose.py │ │ │ └── utils.py │ │ ├── __init__.py │ │ └── registry.py │ ├── predefined_keypoints.py │ ├── transforms.py │ └── util │ │ ├── addict.py │ │ └── box_ops.py └── insightface │ ├── __init__.py │ ├── __pycache__ │ └── __init__.cpython-310.pyc │ ├── app │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── common.cpython-310.pyc │ │ └── face_analysis.cpython-310.pyc │ ├── common.py │ └── face_analysis.py │ ├── data │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── image.cpython-310.pyc │ │ └── pickle_object.cpython-310.pyc │ ├── 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 │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── arcface_onnx.cpython-310.pyc │ │ ├── attribute.cpython-310.pyc │ │ ├── inswapper.cpython-310.pyc │ │ ├── landmark.cpython-310.pyc │ │ ├── model_zoo.cpython-310.pyc │ │ ├── retinaface.cpython-310.pyc │ │ └── scrfd.cpython-310.pyc │ ├── arcface_onnx.py │ ├── attribute.py │ ├── inswapper.py │ ├── landmark.py │ ├── model_store.py │ ├── model_zoo.py │ ├── retinaface.py │ └── scrfd.py │ └── utils │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── constant.cpython-310.pyc │ ├── download.cpython-310.pyc │ ├── face_align.cpython-310.pyc │ ├── filesystem.cpython-310.pyc │ ├── storage.cpython-310.pyc │ └── transform.cpython-310.pyc │ ├── constant.py │ ├── download.py │ ├── face_align.py │ ├── filesystem.py │ ├── storage.py │ └── transform.py ├── face_analysis_diy.py ├── filter.py ├── helper.py ├── human_landmark_runner.py ├── io.py ├── resources ├── clip_embedding_68.pkl ├── clip_embedding_9.pkl ├── lip_array.pkl └── mask_template.png ├── retargeting_utils.py ├── rprint.py ├── text.txt ├── timer.py ├── video.py └── viz.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/__init__.py -------------------------------------------------------------------------------- /animations/FEIFEI4--d30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/animations/FEIFEI4--d30.jpg -------------------------------------------------------------------------------- /animations/FEIFEI4--d30_concat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/animations/FEIFEI4--d30_concat.jpg -------------------------------------------------------------------------------- /animations/FEIFEI4--d9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/animations/FEIFEI4--d9.jpg -------------------------------------------------------------------------------- /animations/FEIFEI4--d9_concat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/animations/FEIFEI4--d9_concat.jpg -------------------------------------------------------------------------------- /animations/s12--d9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/animations/s12--d9.jpg -------------------------------------------------------------------------------- /animations/s12--d9_concat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/animations/s12--d9_concat.jpg -------------------------------------------------------------------------------- /animations/s5--d12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/animations/s5--d12.jpg -------------------------------------------------------------------------------- /animations/s5--d12_concat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/animations/s5--d12_concat.jpg -------------------------------------------------------------------------------- /animations/s5--d19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/animations/s5--d19.jpg -------------------------------------------------------------------------------- /animations/s5--d19_concat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/animations/s5--d19_concat.jpg -------------------------------------------------------------------------------- /animations/s5--d30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/animations/s5--d30.jpg -------------------------------------------------------------------------------- /animations/s5--d30_concat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/animations/s5--d30_concat.jpg -------------------------------------------------------------------------------- /animations/s5--d38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/animations/s5--d38.jpg -------------------------------------------------------------------------------- /animations/s5--d38_concat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/animations/s5--d38_concat.jpg -------------------------------------------------------------------------------- /animations/s5--d8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/animations/s5--d8.jpg -------------------------------------------------------------------------------- /animations/s5--d8_concat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/animations/s5--d8_concat.jpg -------------------------------------------------------------------------------- /animations/s5--d9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/animations/s5--d9.jpg -------------------------------------------------------------------------------- /animations/s5--d9_concat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/animations/s5--d9_concat.jpg -------------------------------------------------------------------------------- /assets/docs/LivePortrait-Gradio-2024-07-19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/docs/LivePortrait-Gradio-2024-07-19.jpg -------------------------------------------------------------------------------- /assets/docs/animals-mode-gradio-2024-08-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/docs/animals-mode-gradio-2024-08-02.jpg -------------------------------------------------------------------------------- /assets/docs/changelog/2024-07-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/docs/changelog/2024-07-10.md -------------------------------------------------------------------------------- /assets/docs/changelog/2024-07-19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/docs/changelog/2024-07-19.md -------------------------------------------------------------------------------- /assets/docs/changelog/2024-07-24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/docs/changelog/2024-07-24.md -------------------------------------------------------------------------------- /assets/docs/changelog/2024-08-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/docs/changelog/2024-08-02.md -------------------------------------------------------------------------------- /assets/docs/changelog/2024-08-05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/docs/changelog/2024-08-05.md -------------------------------------------------------------------------------- /assets/docs/changelog/2024-08-06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/docs/changelog/2024-08-06.md -------------------------------------------------------------------------------- /assets/docs/changelog/2024-08-19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/docs/changelog/2024-08-19.md -------------------------------------------------------------------------------- /assets/docs/directory-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/docs/directory-structure.md -------------------------------------------------------------------------------- /assets/docs/driving-option-multiplier-2024-08-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/docs/driving-option-multiplier-2024-08-02.jpg -------------------------------------------------------------------------------- /assets/docs/editing-portrait-2024-08-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/docs/editing-portrait-2024-08-06.jpg -------------------------------------------------------------------------------- /assets/docs/how-to-install-ffmpeg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/docs/how-to-install-ffmpeg.md -------------------------------------------------------------------------------- /assets/docs/image-driven-image-2024-08-19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/docs/image-driven-image-2024-08-19.jpg -------------------------------------------------------------------------------- /assets/docs/image-driven-portrait-animation-2024-08-19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/docs/image-driven-portrait-animation-2024-08-19.jpg -------------------------------------------------------------------------------- /assets/docs/inference-animals.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/docs/inference-animals.gif -------------------------------------------------------------------------------- /assets/docs/inference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/docs/inference.gif -------------------------------------------------------------------------------- /assets/docs/pose-edit-2024-07-24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/docs/pose-edit-2024-07-24.jpg -------------------------------------------------------------------------------- /assets/docs/retargeting-video-2024-08-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/docs/retargeting-video-2024-08-02.jpg -------------------------------------------------------------------------------- /assets/docs/showcase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/docs/showcase.gif -------------------------------------------------------------------------------- /assets/docs/showcase2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/docs/showcase2.gif -------------------------------------------------------------------------------- /assets/docs/speed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/docs/speed.md -------------------------------------------------------------------------------- /assets/examples/driving/aggrieved.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/aggrieved.pkl -------------------------------------------------------------------------------- /assets/examples/driving/d0.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d0.mp4 -------------------------------------------------------------------------------- /assets/examples/driving/d1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d1.pkl -------------------------------------------------------------------------------- /assets/examples/driving/d10.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d10.mp4 -------------------------------------------------------------------------------- /assets/examples/driving/d11.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d11.mp4 -------------------------------------------------------------------------------- /assets/examples/driving/d12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d12.jpg -------------------------------------------------------------------------------- /assets/examples/driving/d12.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d12.mp4 -------------------------------------------------------------------------------- /assets/examples/driving/d12.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d12.pkl -------------------------------------------------------------------------------- /assets/examples/driving/d13.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d13.mp4 -------------------------------------------------------------------------------- /assets/examples/driving/d14.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d14.mp4 -------------------------------------------------------------------------------- /assets/examples/driving/d18.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d18.mp4 -------------------------------------------------------------------------------- /assets/examples/driving/d19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d19.jpg -------------------------------------------------------------------------------- /assets/examples/driving/d19.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d19.mp4 -------------------------------------------------------------------------------- /assets/examples/driving/d19.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d19.pkl -------------------------------------------------------------------------------- /assets/examples/driving/d2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d2.pkl -------------------------------------------------------------------------------- /assets/examples/driving/d20.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d20.mp4 -------------------------------------------------------------------------------- /assets/examples/driving/d3.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d3.mp4 -------------------------------------------------------------------------------- /assets/examples/driving/d30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d30.jpg -------------------------------------------------------------------------------- /assets/examples/driving/d30.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d30.pkl -------------------------------------------------------------------------------- /assets/examples/driving/d38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d38.jpg -------------------------------------------------------------------------------- /assets/examples/driving/d38.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d38.pkl -------------------------------------------------------------------------------- /assets/examples/driving/d5.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d5.pkl -------------------------------------------------------------------------------- /assets/examples/driving/d6.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d6.mp4 -------------------------------------------------------------------------------- /assets/examples/driving/d7.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d7.pkl -------------------------------------------------------------------------------- /assets/examples/driving/d8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d8.jpg -------------------------------------------------------------------------------- /assets/examples/driving/d8.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d8.pkl -------------------------------------------------------------------------------- /assets/examples/driving/d9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d9.jpg -------------------------------------------------------------------------------- /assets/examples/driving/d9.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d9.mp4 -------------------------------------------------------------------------------- /assets/examples/driving/d9.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/d9.pkl -------------------------------------------------------------------------------- /assets/examples/driving/laugh.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/laugh.pkl -------------------------------------------------------------------------------- /assets/examples/driving/open_lip.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/open_lip.pkl -------------------------------------------------------------------------------- /assets/examples/driving/shake_face.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/shake_face.pkl -------------------------------------------------------------------------------- /assets/examples/driving/shy.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/shy.pkl -------------------------------------------------------------------------------- /assets/examples/driving/talking.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/talking.pkl -------------------------------------------------------------------------------- /assets/examples/driving/wink.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/driving/wink.pkl -------------------------------------------------------------------------------- /assets/examples/source/FEIFEI4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/source/FEIFEI4.jpg -------------------------------------------------------------------------------- /assets/examples/source/d9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/source/d9.jpg -------------------------------------------------------------------------------- /assets/examples/source/d9.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/source/d9.pkl -------------------------------------------------------------------------------- /assets/examples/source/s0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/source/s0.jpg -------------------------------------------------------------------------------- /assets/examples/source/s1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/source/s1.jpg -------------------------------------------------------------------------------- /assets/examples/source/s10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/source/s10.jpg -------------------------------------------------------------------------------- /assets/examples/source/s11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/source/s11.jpg -------------------------------------------------------------------------------- /assets/examples/source/s12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/source/s12.jpg -------------------------------------------------------------------------------- /assets/examples/source/s13.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/source/s13.mp4 -------------------------------------------------------------------------------- /assets/examples/source/s18.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/source/s18.mp4 -------------------------------------------------------------------------------- /assets/examples/source/s2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/source/s2.jpg -------------------------------------------------------------------------------- /assets/examples/source/s20.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/source/s20.mp4 -------------------------------------------------------------------------------- /assets/examples/source/s22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/source/s22.jpg -------------------------------------------------------------------------------- /assets/examples/source/s23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/source/s23.jpg -------------------------------------------------------------------------------- /assets/examples/source/s25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/source/s25.jpg -------------------------------------------------------------------------------- /assets/examples/source/s29.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/source/s29.mp4 -------------------------------------------------------------------------------- /assets/examples/source/s3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/source/s3.jpg -------------------------------------------------------------------------------- /assets/examples/source/s30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/source/s30.jpg -------------------------------------------------------------------------------- /assets/examples/source/s31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/source/s31.jpg -------------------------------------------------------------------------------- /assets/examples/source/s32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/source/s32.jpg -------------------------------------------------------------------------------- /assets/examples/source/s32.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/source/s32.mp4 -------------------------------------------------------------------------------- /assets/examples/source/s36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/source/s36.jpg -------------------------------------------------------------------------------- /assets/examples/source/s38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/assets/examples/source/s38.jpg -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/inference.py -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/nodes.py -------------------------------------------------------------------------------- /pretrained_weights/insightface/models/buffalo_l/2d106det.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/pretrained_weights/insightface/models/buffalo_l/2d106det.onnx -------------------------------------------------------------------------------- /pretrained_weights/insightface/models/buffalo_l/det_10g.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/pretrained_weights/insightface/models/buffalo_l/det_10g.onnx -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/requirements.txt -------------------------------------------------------------------------------- /speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/speed.py -------------------------------------------------------------------------------- /src/__pycache__/live_portrait_pipeline.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/__pycache__/live_portrait_pipeline.cpython-310.pyc -------------------------------------------------------------------------------- /src/__pycache__/live_portrait_wrapper.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/__pycache__/live_portrait_wrapper.cpython-310.pyc -------------------------------------------------------------------------------- /src/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/config/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/config/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /src/config/__pycache__/argument_config.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/config/__pycache__/argument_config.cpython-310.pyc -------------------------------------------------------------------------------- /src/config/__pycache__/base_config.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/config/__pycache__/base_config.cpython-310.pyc -------------------------------------------------------------------------------- /src/config/__pycache__/crop_config.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/config/__pycache__/crop_config.cpython-310.pyc -------------------------------------------------------------------------------- /src/config/__pycache__/inference_config.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/config/__pycache__/inference_config.cpython-310.pyc -------------------------------------------------------------------------------- /src/config/argument_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/config/argument_config.py -------------------------------------------------------------------------------- /src/config/base_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/config/base_config.py -------------------------------------------------------------------------------- /src/config/crop_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/config/crop_config.py -------------------------------------------------------------------------------- /src/config/inference_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/config/inference_config.py -------------------------------------------------------------------------------- /src/config/models.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/config/models.yaml -------------------------------------------------------------------------------- /src/directory/text.txt: -------------------------------------------------------------------------------- 1 | vangeng 2 | -------------------------------------------------------------------------------- /src/gradio_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/gradio_pipeline.py -------------------------------------------------------------------------------- /src/live_portrait_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/live_portrait_pipeline.py -------------------------------------------------------------------------------- /src/live_portrait_pipeline_animal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/live_portrait_pipeline_animal.py -------------------------------------------------------------------------------- /src/live_portrait_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/live_portrait_wrapper.py -------------------------------------------------------------------------------- /src/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/modules/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /src/modules/__pycache__/appearance_feature_extractor.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/modules/__pycache__/appearance_feature_extractor.cpython-310.pyc -------------------------------------------------------------------------------- /src/modules/__pycache__/convnextv2.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/modules/__pycache__/convnextv2.cpython-310.pyc -------------------------------------------------------------------------------- /src/modules/__pycache__/dense_motion.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/modules/__pycache__/dense_motion.cpython-310.pyc -------------------------------------------------------------------------------- /src/modules/__pycache__/motion_extractor.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/modules/__pycache__/motion_extractor.cpython-310.pyc -------------------------------------------------------------------------------- /src/modules/__pycache__/spade_generator.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/modules/__pycache__/spade_generator.cpython-310.pyc -------------------------------------------------------------------------------- /src/modules/__pycache__/stitching_retargeting_network.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/modules/__pycache__/stitching_retargeting_network.cpython-310.pyc -------------------------------------------------------------------------------- /src/modules/__pycache__/util.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/modules/__pycache__/util.cpython-310.pyc -------------------------------------------------------------------------------- /src/modules/__pycache__/warping_network.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/modules/__pycache__/warping_network.cpython-310.pyc -------------------------------------------------------------------------------- /src/modules/appearance_feature_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/modules/appearance_feature_extractor.py -------------------------------------------------------------------------------- /src/modules/convnextv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/modules/convnextv2.py -------------------------------------------------------------------------------- /src/modules/dense_motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/modules/dense_motion.py -------------------------------------------------------------------------------- /src/modules/motion_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/modules/motion_extractor.py -------------------------------------------------------------------------------- /src/modules/spade_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/modules/spade_generator.py -------------------------------------------------------------------------------- /src/modules/stitching_retargeting_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/modules/stitching_retargeting_network.py -------------------------------------------------------------------------------- /src/modules/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/modules/util.py -------------------------------------------------------------------------------- /src/modules/warping_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/modules/warping_network.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/__pycache__/camera.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/__pycache__/camera.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/__pycache__/crop.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/__pycache__/crop.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/__pycache__/cropper.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/__pycache__/cropper.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/__pycache__/face_analysis_diy.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/__pycache__/face_analysis_diy.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/__pycache__/filter.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/__pycache__/filter.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/__pycache__/helper.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/__pycache__/helper.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/__pycache__/human_landmark_runner.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/__pycache__/human_landmark_runner.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/__pycache__/io.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/__pycache__/io.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/__pycache__/retargeting_utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/__pycache__/retargeting_utils.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/__pycache__/rprint.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/__pycache__/rprint.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/__pycache__/timer.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/__pycache__/timer.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/__pycache__/video.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/__pycache__/video.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/animal_landmark_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/animal_landmark_runner.py -------------------------------------------------------------------------------- /src/utils/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/camera.py -------------------------------------------------------------------------------- /src/utils/check_windows_port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/check_windows_port.py -------------------------------------------------------------------------------- /src/utils/crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/crop.py -------------------------------------------------------------------------------- /src/utils/cropper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/cropper.py -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/config_model/UniPose_SwinT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/config_model/UniPose_SwinT.py -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/config_model/coco_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/config_model/coco_transformer.py -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/UniPose/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/UniPose/__init__.py -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/UniPose/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/UniPose/attention.py -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/UniPose/backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/UniPose/backbone.py -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/UniPose/deformable_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/UniPose/deformable_transformer.py -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/UniPose/fuse_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/UniPose/fuse_modules.py -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/UniPose/mask_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/UniPose/mask_generate.py -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/UniPose/ops/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/UniPose/ops/functions/__init__.py -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/UniPose/ops/functions/ms_deform_attn_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/UniPose/ops/functions/ms_deform_attn_func.py -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/UniPose/ops/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/UniPose/ops/modules/__init__.py -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/UniPose/ops/modules/ms_deform_attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/UniPose/ops/modules/ms_deform_attn.py -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/UniPose/ops/modules/ms_deform_attn_key_aware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/UniPose/ops/modules/ms_deform_attn_key_aware.py -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/UniPose/ops/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/UniPose/ops/setup.py -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/UniPose/ops/src/cpu/ms_deform_attn_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/UniPose/ops/src/cpu/ms_deform_attn_cpu.cpp -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/UniPose/ops/src/cpu/ms_deform_attn_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/UniPose/ops/src/cpu/ms_deform_attn_cpu.h -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/UniPose/ops/src/cuda/ms_deform_attn_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/UniPose/ops/src/cuda/ms_deform_attn_cuda.cu -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/UniPose/ops/src/cuda/ms_deform_attn_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/UniPose/ops/src/cuda/ms_deform_attn_cuda.h -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/UniPose/ops/src/cuda/ms_deform_im2col_cuda.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/UniPose/ops/src/cuda/ms_deform_im2col_cuda.cuh -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/UniPose/ops/src/ms_deform_attn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/UniPose/ops/src/ms_deform_attn.h -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/UniPose/ops/src/vision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/UniPose/ops/src/vision.cpp -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/UniPose/ops/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/UniPose/ops/test.py -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/UniPose/position_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/UniPose/position_encoding.py -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/UniPose/swin_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/UniPose/swin_transformer.py -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/UniPose/transformer_deformable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/UniPose/transformer_deformable.py -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/UniPose/transformer_vanilla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/UniPose/transformer_vanilla.py -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/UniPose/unipose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/UniPose/unipose.py -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/UniPose/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/UniPose/utils.py -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/__init__.py -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/models/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/models/registry.py -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/predefined_keypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/predefined_keypoints.py -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/transforms.py -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/util/addict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/util/addict.py -------------------------------------------------------------------------------- /src/utils/dependencies/XPose/util/box_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/XPose/util/box_ops.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/__init__.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/app/__init__.py: -------------------------------------------------------------------------------- 1 | from .face_analysis import * 2 | -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/app/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/app/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/app/__pycache__/common.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/app/__pycache__/common.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/app/__pycache__/face_analysis.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/app/__pycache__/face_analysis.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/app/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/app/common.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/app/face_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/app/face_analysis.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/data/__init__.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/data/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/data/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/data/__pycache__/image.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/data/__pycache__/image.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/data/__pycache__/pickle_object.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/data/__pycache__/pickle_object.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/data/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/data/image.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/data/images/Tom_Hanks_54745.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/data/images/Tom_Hanks_54745.png -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/data/images/mask_black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/data/images/mask_black.jpg -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/data/images/mask_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/data/images/mask_blue.jpg -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/data/images/mask_green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/data/images/mask_green.jpg -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/data/images/mask_white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/data/images/mask_white.jpg -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/data/images/t1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/data/images/t1.jpg -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/data/objects/meanshape_68.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/data/objects/meanshape_68.pkl -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/data/pickle_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/data/pickle_object.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/data/rec_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/data/rec_builder.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/model_zoo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/model_zoo/__init__.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/model_zoo/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/model_zoo/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/model_zoo/__pycache__/arcface_onnx.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/model_zoo/__pycache__/arcface_onnx.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/model_zoo/__pycache__/attribute.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/model_zoo/__pycache__/attribute.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/model_zoo/__pycache__/inswapper.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/model_zoo/__pycache__/inswapper.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/model_zoo/__pycache__/landmark.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/model_zoo/__pycache__/landmark.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/model_zoo/__pycache__/model_zoo.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/model_zoo/__pycache__/model_zoo.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/model_zoo/__pycache__/retinaface.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/model_zoo/__pycache__/retinaface.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/model_zoo/__pycache__/scrfd.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/model_zoo/__pycache__/scrfd.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/model_zoo/arcface_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/model_zoo/arcface_onnx.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/model_zoo/attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/model_zoo/attribute.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/model_zoo/inswapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/model_zoo/inswapper.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/model_zoo/landmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/model_zoo/landmark.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/model_zoo/model_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/model_zoo/model_store.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/model_zoo/model_zoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/model_zoo/model_zoo.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/model_zoo/retinaface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/model_zoo/retinaface.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/model_zoo/scrfd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/model_zoo/scrfd.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/utils/__init__.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/utils/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/utils/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/utils/__pycache__/constant.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/utils/__pycache__/constant.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/utils/__pycache__/download.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/utils/__pycache__/download.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/utils/__pycache__/face_align.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/utils/__pycache__/face_align.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/utils/__pycache__/filesystem.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/utils/__pycache__/filesystem.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/utils/__pycache__/storage.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/utils/__pycache__/storage.cpython-310.pyc -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/utils/__pycache__/transform.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/utils/__pycache__/transform.cpython-310.pyc -------------------------------------------------------------------------------- /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/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/utils/download.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/utils/face_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/utils/face_align.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/utils/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/utils/filesystem.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/utils/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/utils/storage.py -------------------------------------------------------------------------------- /src/utils/dependencies/insightface/utils/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/dependencies/insightface/utils/transform.py -------------------------------------------------------------------------------- /src/utils/face_analysis_diy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/face_analysis_diy.py -------------------------------------------------------------------------------- /src/utils/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/filter.py -------------------------------------------------------------------------------- /src/utils/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/helper.py -------------------------------------------------------------------------------- /src/utils/human_landmark_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/human_landmark_runner.py -------------------------------------------------------------------------------- /src/utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/io.py -------------------------------------------------------------------------------- /src/utils/resources/clip_embedding_68.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/resources/clip_embedding_68.pkl -------------------------------------------------------------------------------- /src/utils/resources/clip_embedding_9.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/resources/clip_embedding_9.pkl -------------------------------------------------------------------------------- /src/utils/resources/lip_array.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/resources/lip_array.pkl -------------------------------------------------------------------------------- /src/utils/resources/mask_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/resources/mask_template.png -------------------------------------------------------------------------------- /src/utils/retargeting_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/retargeting_utils.py -------------------------------------------------------------------------------- /src/utils/rprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/rprint.py -------------------------------------------------------------------------------- /src/utils/text.txt: -------------------------------------------------------------------------------- 1 | vangeng 2 | -------------------------------------------------------------------------------- /src/utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/timer.py -------------------------------------------------------------------------------- /src/utils/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/video.py -------------------------------------------------------------------------------- /src/utils/viz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VangengLab/ComfyUI-LivePortrait_v3/HEAD/src/utils/viz.py --------------------------------------------------------------------------------