Spaces:
Running
Running
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import insightface
|
2 |
+
from insightface.app import FaceAnalysis
|
3 |
+
import cv2
|
4 |
+
import os
|
5 |
+
import numpy as np
|
6 |
+
import gradio as gr
|
7 |
+
import urllib.request
|
8 |
+
|
9 |
+
# URL đến mô hình hoán đổi khuôn mặt
|
10 |
+
model_url = "https://huggingface.co/ezioruan/inswapper_128.onnx/resolve/main/inswapper_128.onnx"
|
11 |
+
model_path = os.path.expanduser('~/.insightface/models/inswapper_128.onnx')
|
12 |
+
|
13 |
+
# Tải mô hình nếu chưa tồn tại
|
14 |
+
os.makedirs(os.path.dirname(model_path), exist_ok=True)
|
15 |
+
if not os.path.exists(model_path):
|
16 |
+
print("Đang tải mô hình từ URL...")
|
17 |
+
urllib.request.urlretrieve(model_url, model_path)
|
18 |
+
print("Hoàn tất tải mô hình!")
|
19 |
+
|
20 |
+
# Khởi tạo đối tượng INSwapper
|
21 |
+
swapper = insightface.model_zoo.get_model(model_path)
|
22 |
+
|
23 |
+
# Khởi tạo mô hình nhận diện khuôn mặt
|
24 |
+
app = FaceAnalysis(name='buffalo_l')
|
25 |
+
app.prepare(ctx_id=0, det_size=(640, 640))
|
26 |
+
|
27 |
+
def swap_faces(source_img, target_img):
|
28 |
+
# Đọc ảnh từ đầu vào Gradio
|
29 |
+
source_img = cv2.cvtColor(np.array(source_img), cv2.COLOR_RGB2BGR)
|
30 |
+
target_img = cv2.cvtColor(np.array(target_img), cv2.COLOR_RGB2BGR)
|
31 |
+
|
32 |
+
# Phát hiện khuôn mặt
|
33 |
+
source_faces = app.get(source_img)
|
34 |
+
target_faces = app.get(target_img)
|
35 |
+
|
36 |
+
# Kiểm tra xem có phát hiện được khuôn mặt hay không
|
37 |
+
if len(source_faces) == 0:
|
38 |
+
raise gr.Error("❌ Không tìm thấy khuôn mặt trong ảnh nguồn.")
|
39 |
+
if len(target_faces) == 0:
|
40 |
+
raise gr.Error("❌ Không tìm thấy khuôn mặt trong ảnh đích.")
|
41 |
+
|
42 |
+
# Chọn khuôn mặt đầu tiên trong ảnh nguồn
|
43 |
+
source_face = source_faces[0]
|
44 |
+
|
45 |
+
# Thực hiện hoán đổi khuôn mặt
|
46 |
+
result_img = target_img.copy()
|
47 |
+
for target_face in target_faces:
|
48 |
+
result_img = swapper.get(result_img, target_face, source_face, paste_back=True)
|
49 |
+
|
50 |
+
# Chuyển kết quả sang định dạng RGB để hiển thị trong Gradio
|
51 |
+
result_img = cv2.cvtColor(result_img, cv2.COLOR_BGR2RGB)
|
52 |
+
return result_img
|
53 |
+
|
54 |
+
# Tạo giao diện Gradio
|
55 |
+
iface = gr.Interface(
|
56 |
+
fn=swap_faces,
|
57 |
+
inputs=[
|
58 |
+
gr.Image(type="pil", label="Ảnh Nguồn"),
|
59 |
+
gr.Image(type="pil", label="Ảnh Đích"),
|
60 |
+
],
|
61 |
+
outputs=gr.Image(type="numpy", label="Kết Quả Hoán Đổi Khuôn Mặt"),
|
62 |
+
title="Hoán Đổi Khuôn Mặt",
|
63 |
+
description="Tải lên ảnh nguồn và ảnh đích để hoán đổi khuôn mặt.",
|
64 |
+
)
|
65 |
+
|
66 |
+
# Chạy giao diện
|
67 |
+
iface.launch()
|