├── FastBlend ├── api.py ├── cupy_kernels.py ├── data.py ├── patch_match.py └── runners │ ├── __init__.py │ ├── accurate.py │ ├── balanced.py │ ├── fast.py │ └── interpolation.py ├── README.md ├── __init__.py ├── alert_when_finished.py ├── drop.wav ├── example ├── Interpolate_KeyFrame.json ├── my OpenPose.json ├── smoothvideo.json └── smothvideo with batch_size(faster).json ├── filldarkmask.py ├── image_save_with_path.py ├── interpolatekeyframe.py ├── jiji.wav ├── masknumcap.py ├── merge_image_list.py ├── myopenpose.py ├── rebatchimage.py ├── requirements.txt └── smoothVideo.py /FastBlend/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AInseven/ComfyUI-fastblend/HEAD/FastBlend/api.py -------------------------------------------------------------------------------- /FastBlend/cupy_kernels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AInseven/ComfyUI-fastblend/HEAD/FastBlend/cupy_kernels.py -------------------------------------------------------------------------------- /FastBlend/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AInseven/ComfyUI-fastblend/HEAD/FastBlend/data.py -------------------------------------------------------------------------------- /FastBlend/patch_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AInseven/ComfyUI-fastblend/HEAD/FastBlend/patch_match.py -------------------------------------------------------------------------------- /FastBlend/runners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AInseven/ComfyUI-fastblend/HEAD/FastBlend/runners/__init__.py -------------------------------------------------------------------------------- /FastBlend/runners/accurate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AInseven/ComfyUI-fastblend/HEAD/FastBlend/runners/accurate.py -------------------------------------------------------------------------------- /FastBlend/runners/balanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AInseven/ComfyUI-fastblend/HEAD/FastBlend/runners/balanced.py -------------------------------------------------------------------------------- /FastBlend/runners/fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AInseven/ComfyUI-fastblend/HEAD/FastBlend/runners/fast.py -------------------------------------------------------------------------------- /FastBlend/runners/interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AInseven/ComfyUI-fastblend/HEAD/FastBlend/runners/interpolation.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AInseven/ComfyUI-fastblend/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AInseven/ComfyUI-fastblend/HEAD/__init__.py -------------------------------------------------------------------------------- /alert_when_finished.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AInseven/ComfyUI-fastblend/HEAD/alert_when_finished.py -------------------------------------------------------------------------------- /drop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AInseven/ComfyUI-fastblend/HEAD/drop.wav -------------------------------------------------------------------------------- /example/Interpolate_KeyFrame.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AInseven/ComfyUI-fastblend/HEAD/example/Interpolate_KeyFrame.json -------------------------------------------------------------------------------- /example/my OpenPose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AInseven/ComfyUI-fastblend/HEAD/example/my OpenPose.json -------------------------------------------------------------------------------- /example/smoothvideo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AInseven/ComfyUI-fastblend/HEAD/example/smoothvideo.json -------------------------------------------------------------------------------- /example/smothvideo with batch_size(faster).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AInseven/ComfyUI-fastblend/HEAD/example/smothvideo with batch_size(faster).json -------------------------------------------------------------------------------- /filldarkmask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AInseven/ComfyUI-fastblend/HEAD/filldarkmask.py -------------------------------------------------------------------------------- /image_save_with_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AInseven/ComfyUI-fastblend/HEAD/image_save_with_path.py -------------------------------------------------------------------------------- /interpolatekeyframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AInseven/ComfyUI-fastblend/HEAD/interpolatekeyframe.py -------------------------------------------------------------------------------- /jiji.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AInseven/ComfyUI-fastblend/HEAD/jiji.wav -------------------------------------------------------------------------------- /masknumcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AInseven/ComfyUI-fastblend/HEAD/masknumcap.py -------------------------------------------------------------------------------- /merge_image_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AInseven/ComfyUI-fastblend/HEAD/merge_image_list.py -------------------------------------------------------------------------------- /myopenpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AInseven/ComfyUI-fastblend/HEAD/myopenpose.py -------------------------------------------------------------------------------- /rebatchimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AInseven/ComfyUI-fastblend/HEAD/rebatchimage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | cupy-cuda12x -------------------------------------------------------------------------------- /smoothVideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AInseven/ComfyUI-fastblend/HEAD/smoothVideo.py --------------------------------------------------------------------------------