roop/core/processor.py

54 lines
1.8 KiB
Python
Raw Normal View History

import os
2023-05-28 17:49:40 +03:00
import cv2
import insightface
import core.globals
2023-05-28 17:49:40 +03:00
from core.config import get_face
FACE_SWAPPER = None
def get_face_swapper():
global FACE_SWAPPER
if FACE_SWAPPER is None:
2023-05-30 22:52:39 +03:00
model_path = os.path.join(os.path.abspath(os.path.dirname(__file__)), '../inswapper_128.onnx')
2023-05-31 15:54:11 +03:00
FACE_SWAPPER = insightface.model_zoo.get_model(model_path, providers=core.globals.providers)
return FACE_SWAPPER
2023-05-28 17:49:40 +03:00
def process_video(source_img, frame_paths):
source_face = get_face(cv2.imread(source_img))
for frame_path in frame_paths:
frame = cv2.imread(frame_path)
try:
if core.globals.all_faces:
all_faces = get_all_faces(frame)
result = frame
for singleFace in all_faces:
if singleFace:
result = get_face_swapper().get(result, singleFace, source_face, paste_back=True)
print('.', end='', flush=True)
else:
print('S', end='', flush=True)
cv2.imwrite(frame_path, result)
else:
face = get_face(frame)
if face:
result = get_face_swapper().get(frame, face, source_face, paste_back=True)
cv2.imwrite(frame_path, result)
print('.', end='', flush=True)
else:
print('S', end='', flush=True)
2023-05-28 17:49:40 +03:00
except Exception as e:
print('E', end='', flush=True)
2023-05-28 17:49:40 +03:00
pass
def process_img(source_img, target_path, output_file):
2023-05-28 17:49:40 +03:00
frame = cv2.imread(target_path)
face = get_face(frame)
source_face = get_face(cv2.imread(source_img))
2023-05-31 03:44:58 +03:00
result = get_face_swapper().get(frame, face, source_face, paste_back=True)
cv2.imwrite(output_file, result)
print("\n\nImage saved as:", output_file, "\n\n")