-
Notifications
You must be signed in to change notification settings - Fork 7
/
main.py
133 lines (105 loc) · 4.26 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
import os
import time
import argparse
import cv2
import torch
import torch.nn as nn
import pyvirtualcam
import numpy as np
import mediapipe as mp
from PIL import Image
from models import TalkingAnimeLight
from pose import get_pose
from utils import preprocessing_image, postprocessing_image
parser = argparse.ArgumentParser()
parser.add_argument('--debug', action='store_true')
parser.add_argument('--input', type=str, default='cam')
parser.add_argument('--character', type=str, default='0001')
parser.add_argument('--output_dir', type=str, default=f'dst')
parser.add_argument('--output_webcam', action='store_true')
args = parser.parse_args()
@torch.no_grad()
def main():
model = TalkingAnimeLight().cuda()
model = model.eval()
model = model.half()
img = Image.open(f"character/{args.character}.png")
img = img.resize((256, 256))
input_image = preprocessing_image(img).unsqueeze(0)
if args.input == 'cam':
cap = cv2.VideoCapture(0)
ret, frame = cap.read()
if ret is None:
raise Exception("Can't find Camera")
else:
cap = cv2.VideoCapture(args.input)
frame_count = 0
os.makedirs(os.path.join('dst', args.character, args.output_dir), exist_ok=True)
facemesh = mp.solutions.face_mesh.FaceMesh(refine_landmarks=True)
if args.output_webcam:
cam = pyvirtualcam.Camera(width=1280, height=720, fps=30)
print(f'Using virtual camera: {cam.device}')
mouth_eye_vector = torch.empty(1, 27)
pose_vector = torch.empty(1, 3)
input_image = input_image.half()
mouth_eye_vector = mouth_eye_vector.half()
pose_vector = pose_vector.half()
input_image = input_image.cuda()
mouth_eye_vector = mouth_eye_vector.cuda()
pose_vector = pose_vector.cuda()
pose_queue = []
while cap.isOpened():
ret, frame = cap.read()
input_frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
results = facemesh.process(input_frame)
if results.multi_face_landmarks is None:
continue
facial_landmarks = results.multi_face_landmarks[0].landmark
if args.debug:
pose, debug_image = get_pose(facial_landmarks, frame)
else:
pose = get_pose(facial_landmarks)
if len(pose_queue) < 3:
pose_queue.append(pose)
pose_queue.append(pose)
pose_queue.append(pose)
else:
pose_queue.pop(0)
pose_queue.append(pose)
np_pose = np.average(np.array(pose_queue), axis=0, weights=[0.6, 0.3, 0.1])
eye_l_h_temp = np_pose[0]
eye_r_h_temp = np_pose[1]
mouth_ratio = np_pose[2]
eye_y_ratio = np_pose[3]
eye_x_ratio = np_pose[4]
x_angle = np_pose[5]
y_angle = np_pose[6]
z_angle = np_pose[7]
mouth_eye_vector[0, :] = 0
mouth_eye_vector[0, 2] = eye_l_h_temp
mouth_eye_vector[0, 3] = eye_r_h_temp
mouth_eye_vector[0, 14] = mouth_ratio * 1.5
mouth_eye_vector[0, 25] = eye_y_ratio
mouth_eye_vector[0, 26] = eye_x_ratio
pose_vector[0, 0] = (x_angle - 1.5) * 1.6
pose_vector[0, 1] = y_angle * 2.0 # temp weight
pose_vector[0, 2] = (z_angle + 1.5) * 2 # temp weight
output_image = model(input_image, mouth_eye_vector, pose_vector)
if args.debug:
output_frame = cv2.cvtColor(postprocessing_image(output_image.cpu()), cv2.COLOR_RGBA2BGR)
resized_frame = cv2.resize(output_frame, (np.min(debug_image.shape[:2]), np.min(debug_image.shape[:2])))
output_frame = np.concatenate([debug_image, resized_frame], axis=1)
cv2.imshow("frame", output_frame)
# cv2.imshow("camera", debug_image)
cv2.waitKey(1)
if args.input != 'cam':
cv2.imwrite(os.path.join('dst', args.character, args.output_dir, f'{frame_count:04d}.jpeg'))
frame_count += 1
if args.output_webcam:
result_image = np.zeros([720, 1280, 3], dtype=np.uint8)
result_image[720 - 512:, 1280 // 2 - 256:1280 // 2 + 256] = cv2.resize(
cv2.cvtColor(postprocessing_image(output_image.cpu()), cv2.COLOR_RGBA2RGB), (512, 512))
cam.send(result_image)
cam.sleep_until_next_frame()
if __name__ == '__main__':
main()