FaceSwapper / app.py
Vignesh455's picture
Update app.py
d8c73e5 verified
raw
history blame
No virus
889 Bytes
import insightface
from insightface.app import FaceAnalysis
import gradio as gr
import gfpgan
def Swap_Face(image1,image2):
app = FaceAnalysis(name='buffalo_l')
app.prepare(ctx_id=0, det_size=(640, 640))
swapper = insightface.model_zoo.get_model(r"C:\Users\vigne\Downloads\inswapper_128.onnx", download=False,
download_zip=False)
face_enhancer = gfpgan.GFPGANer(model_path=r"C:\Users\vigne\Downloads\GFPGANv1.4.pth", upscale=1)
# Do the swap
face1 = app.get(image1)[0]
face2 = app.get(image2)[0]
img1_ = image1.copy()
result = swapper.get(img1_, face1, face2, paste_back=True)
_, _, result = face_enhancer.enhance(result)
return result
title = "Swap Faces Using Our Model!!!"
iface = gr.Interface(fn=Swap_Face,inputs=["image","image"],outputs="image",title=title)
iface.launch(share=True)