Add GPU support, Quit on missing model, Remove globals (sorry)
This commit is contained in:
parent
d05b9ea6e6
commit
8701123ee3
@ -1,8 +1,7 @@
|
|||||||
import insightface
|
import insightface
|
||||||
import onnxruntime
|
import onnxruntime
|
||||||
import core.globals
|
|
||||||
|
|
||||||
face_analyser = insightface.app.FaceAnalysis(name='buffalo_l', providers=core.globals.providers)
|
face_analyser = insightface.app.FaceAnalysis(name='buffalo_l', providers=onnxruntime.get_available_providers())
|
||||||
face_analyser.prepare(ctx_id=0, det_size=(640, 640))
|
face_analyser.prepare(ctx_id=0, det_size=(640, 640))
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,4 +0,0 @@
|
|||||||
import onnxruntime
|
|
||||||
|
|
||||||
use_gpu = False
|
|
||||||
providers = onnxruntime.get_available_providers()
|
|
@ -1,11 +1,15 @@
|
|||||||
|
import os
|
||||||
import cv2
|
import cv2
|
||||||
import insightface
|
import insightface
|
||||||
import onnxruntime
|
import onnxruntime
|
||||||
import core.globals
|
|
||||||
from core.config import get_face
|
from core.config import get_face
|
||||||
from core.utils import rreplace
|
from core.utils import rreplace
|
||||||
|
|
||||||
face_swapper = insightface.model_zoo.get_model('inswapper_128.onnx', providers=core.globals.providers)
|
if os.path.isfile('inswapper_128.onnx'):
|
||||||
|
face_swapper = insightface.model_zoo.get_model('inswapper_128.onnx', providers=onnxruntime.get_available_providers())
|
||||||
|
else:
|
||||||
|
quit('File "inswapper_128.onnx" does not exist!')
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def process_video(source_img, frame_paths):
|
def process_video(source_img, frame_paths):
|
||||||
@ -25,6 +29,7 @@ def process_video(source_img, frame_paths):
|
|||||||
pass
|
pass
|
||||||
print(flush=True)
|
print(flush=True)
|
||||||
|
|
||||||
|
|
||||||
def process_img(source_img, target_path):
|
def process_img(source_img, target_path):
|
||||||
frame = cv2.imread(target_path)
|
frame = cv2.imread(target_path)
|
||||||
face = get_face(frame)
|
face = get_face(frame)
|
||||||
|
@ -17,6 +17,7 @@ def run_command(command, mode="silent"):
|
|||||||
return os.system(command)
|
return os.system(command)
|
||||||
return os.popen(command).read()
|
return os.popen(command).read()
|
||||||
|
|
||||||
|
|
||||||
def detect_fps(input_path):
|
def detect_fps(input_path):
|
||||||
input_path = path(input_path)
|
input_path = path(input_path)
|
||||||
output = os.popen(f'ffprobe -v error -select_streams v -of default=noprint_wrappers=1:nokey=1 -show_entries stream=r_frame_rate "{input_path}"').read()
|
output = os.popen(f'ffprobe -v error -select_streams v -of default=noprint_wrappers=1:nokey=1 -show_entries stream=r_frame_rate "{input_path}"').read()
|
||||||
@ -58,6 +59,7 @@ def add_audio(output_dir, target_path, keep_frames, output_file):
|
|||||||
def is_img(path):
|
def is_img(path):
|
||||||
return path.lower().endswith(("png", "jpg", "jpeg", "bmp"))
|
return path.lower().endswith(("png", "jpg", "jpeg", "bmp"))
|
||||||
|
|
||||||
|
|
||||||
def rreplace(s, old, new, occurrence):
|
def rreplace(s, old, new, occurrence):
|
||||||
li = s.rsplit(old, occurrence)
|
li = s.rsplit(old, occurrence)
|
||||||
return new.join(li)
|
return new.join(li)
|
||||||
|
@ -1,8 +1,12 @@
|
|||||||
numpy==1.24.3
|
numpy==1.24.3
|
||||||
opencv-python==4.7.0.72
|
opencv-python==4.7.0.72
|
||||||
onnx==1.14.0
|
onnx==1.14.0
|
||||||
onnxruntime==1.15.0
|
onnxruntime-gpu==1.15.0
|
||||||
insightface==0.7.3
|
insightface==0.7.3
|
||||||
psutil==5.9.5
|
psutil==5.9.5
|
||||||
tk==0.1.0
|
tk==0.1.0
|
||||||
|
<<<<<<< HEAD
|
||||||
pillow==9.0.1
|
pillow==9.0.1
|
||||||
|
=======
|
||||||
|
torch==2.0.1
|
||||||
|
>>>>>>> 54f800d (Add GPU support, Quit on missing model, Remove globals (sorry))
|
||||||
|
7
run.py
Normal file → Executable file
7
run.py
Normal file → Executable file
@ -1,15 +1,16 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
<<<<<<< HEAD
|
||||||
import sys
|
import sys
|
||||||
import time
|
import time
|
||||||
|
=======
|
||||||
|
|
||||||
|
>>>>>>> 54f800d (Add GPU support, Quit on missing model, Remove globals (sorry))
|
||||||
import torch
|
import torch
|
||||||
import shutil
|
import shutil
|
||||||
import core.globals
|
|
||||||
|
|
||||||
if not shutil.which('ffmpeg'):
|
if not shutil.which('ffmpeg'):
|
||||||
print('ffmpeg is not installed. Read the docs: https://github.com/s0md3v/roop#installation.\n' * 10)
|
print('ffmpeg is not installed. Read the docs: https://github.com/s0md3v/roop#installation.\n' * 10)
|
||||||
quit()
|
quit()
|
||||||
if '--gpu' not in sys.argv:
|
|
||||||
core.globals.providers = ['CPUExecutionProvider']
|
|
||||||
|
|
||||||
import glob
|
import glob
|
||||||
import argparse
|
import argparse
|
||||||
|
Loading…
Reference in New Issue
Block a user