-
Notifications
You must be signed in to change notification settings - Fork 0
/
01-crop_faces.py
69 lines (61 loc) · 2.64 KB
/
01-crop_faces.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
import cv2
from mtcnn import MTCNN
import sys, os.path
import json
from keras import backend as K
import tensorflow as tf
print(tf.__version__)
tf.compat.v1.logging.set_verbosity(tf.compat.v1.logging.ERROR)
# physical_devices = tf.config.list_physical_devices('GPU')
# print(physical_devices)
# tf.config.experimental.set_memory_growth(physical_devices[0], True)
base_path = '.\\train_sample_videos\\'
def get_filename_only(file_path):
file_basename = os.path.basename(file_path)
filename_only = file_basename.split('.')[0]
return filename_only
with open(os.path.join(base_path, 'metadata.json')) as metadata_json:
metadata = json.load(metadata_json)
print(len(metadata))
for filename in metadata.keys():
tmp_path = os.path.join(base_path, get_filename_only(filename))
print('Processing Directory: ' + tmp_path)
frame_images = [x for x in os.listdir(tmp_path) if os.path.isfile(os.path.join(tmp_path, x))]
faces_path = os.path.join(tmp_path, 'faces')
print('Creating Directory: ' + faces_path)
os.makedirs(faces_path, exist_ok=True)
print('Cropping Faces from Images...')
for frame in frame_images:
print('Processing ', frame)
detector = MTCNN()
image = cv2.cvtColor(cv2.imread(os.path.join(tmp_path, frame)), cv2.COLOR_BGR2RGB)
results = detector.detect_faces(image)
print('Face Detected: ', len(results))
count = 0
for result in results:
bounding_box = result['box']
print(bounding_box)
confidence = result['confidence']
print(confidence)
if len(results) < 2 or confidence > 0.95:
margin_x = bounding_box[2] * 0.3 # 30% as the margin
margin_y = bounding_box[3] * 0.3 # 30% as the margin
x1 = int(bounding_box[0] - margin_x)
if x1 < 0:
x1 = 0
x2 = int(bounding_box[0] + bounding_box[2] + margin_x)
if x2 > image.shape[1]:
x2 = image.shape[1]
y1 = int(bounding_box[1] - margin_y)
if y1 < 0:
y1 = 0
y2 = int(bounding_box[1] + bounding_box[3] + margin_y)
if y2 > image.shape[0]:
y2 = image.shape[0]
print(x1, y1, x2, y2)
crop_image = image[y1:y2, x1:x2]
new_filename = '{}-{:02d}.png'.format(os.path.join(faces_path, get_filename_only(frame)), count)
count = count + 1
cv2.imwrite(new_filename, cv2.cvtColor(crop_image, cv2.COLOR_RGB2BGR))
else:
print('Skipped a face..')