描述
一个简单的面部交换器,基于insightface inswapper,很大程度上受到roop的启发。
使用教程 https://www.bilibili.com/video/BV1pN411p7vh/?vd_source=faa4615f3c71b2b526ed2b1f48a70b2c
特征
- 易于使用的渐变图形用户界面
- 支持图片、视频、目录输入
- 达成场景特定(人脸识别)
- 视频工具修剪
- 人脸增强器(GFPGAN、Real-ESRGAN)
- 人脸解析地址
- 合作实验室支持
[仓库地址] (https://github.com/douhaohaode/Swap-Mukham)
安装
CPU安装
git clone https://github.com/douhaohaode/Swap-Mukham.git
cd Swap-Mukham
conda create -n swapmukham python=3.10 -y
conda activate swapmukham
pip install torch==2.0.0+cpu torchvision==0.15.1+cpu torchaudio==2.0.1 --index-url https://download.pytorch.org/whl/cpu
pip install -r requirements_cpu.txt
python app.py
GPU 安装 (CUDA)
git clone https://github.com/douhaohaode/Swap-Mukham.git
cd Swap-Mukham
conda create -n swapmukham python=3.10 -y
conda activate swapmukham
conda install pytorch==2.0.0 torchvision==0.15.0 torchaudio==2.0.0 pytorch-cuda=11.8 -c pytorch -c nvidia
pip install -r requirements.txt
python app.py --cuda --batch_size 32