forked from foamliu/Face-Alignment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
align_retinaface.py
35 lines (26 loc) · 1.25 KB
/
align_retinaface.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
import cv2 as cv
import numpy as np
from align_faces import warp_and_crop_face, get_reference_facial_points
from retinaface.detector import RetinafaceDetector
def process(img, output_size):
_, facial5points = detector.detect_faces(img)
facial5points = np.reshape(facial5points[0], (2, 5))
default_square = True
inner_padding_factor = 0.25
outer_padding = (0, 0)
# get the reference 5 landmarks position in the crop settings
reference_5pts = get_reference_facial_points(
output_size, inner_padding_factor, outer_padding, default_square)
# dst_img = warp_and_crop_face(raw, facial5points, reference_5pts, crop_size)
dst_img = warp_and_crop_face(raw, facial5points, reference_pts=reference_5pts, crop_size=output_size)
cv.imwrite('images/{}_retinaface_aligned_{}x{}.jpg'.format(i, output_size[0], output_size[1]), dst_img)
# img = cv.resize(raw, (224, 224))
# cv.imwrite('images/{}_img.jpg'.format(i), img)
if __name__ == "__main__":
detector = RetinafaceDetector()
for i in range(10):
filename = 'images/{}_raw.jpg'.format(i)
print('Loading image {}'.format(filename))
raw = cv.imread(filename)
process(raw, output_size=(224, 224))
process(raw, output_size=(112, 112))