-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdatasets.py
More file actions
297 lines (225 loc) · 11.5 KB
/
datasets.py
File metadata and controls
297 lines (225 loc) · 11.5 KB
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
import os
import random
from scipy.signal import savgol_filter
from PIL import Image
import json
import numpy as np
import torch
from utils import *
import torch.utils.data as data
import pandas as pd
import pickle
import time
from shutil import copyfile, copytree
babyrobot_mapper = {
"Happiness": 0,
"Sadness": 1,
"Surprise": 2,
"Fear": 3,
"Disgust": 4,
"Anger": 5,
"Neutral": 6,
}
inv_babyrobot_mapper = {
5: "Anger",
4: "Disgust",
3: "Fear",
0: "Happiness",
1: "Sadness",
2: "Surprise",
6: "Neutral"
}
def get_db_splits(db):
""" get the splits for each dataset for cross validation """
return [[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]]
def get_all_db_subjects(db):
""" get subjects for each db """
return [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]
def get_babyrobot_annotations():
""" load the annotations of the babyrobot dataset """
unique_subjects = []
subject_to_number = {}
data = []
subj_idx = 0
with open("BRED_dataset/annotations.csv") as data_file:
for x in data_file.readlines()[1:]:
v = {
"path": x.split(",")[0].split(".")[0],
"subject": x.split(",")[0].split("/")[2],
"emotion": babyrobot_mapper[x.split(",")[1].strip()], # map emotion to number
"ann_1_does_emotion_body": x.split(",")[2].strip(),
"ann_1_does_emotion_face": x.split(",")[3].strip(),
"ann_2_does_emotion_body": x.split(",")[4].strip(),
"ann_2_does_emotion_face": x.split(",")[5].strip(),
"ann_3_does_emotion_body": x.split(",")[6].strip(),
"ann_3_does_emotion_face": x.split(",")[7].strip(),
}
# take as ground truth the majority
l = [v['ann_1_does_emotion_face'], v['ann_2_does_emotion_face'], v['ann_3_does_emotion_face']]
v['does_emotion_face'] = max(set(l), key=l.count)
l = [v['ann_1_does_emotion_body'], v['ann_2_does_emotion_body'], v['ann_3_does_emotion_body']]
v['does_emotion_body'] = max(set(l), key=l.count)
data.append(v)
subject = v['subject']
if subject not in unique_subjects:
unique_subjects.append(subject)
subject_to_number[subject] = subj_idx
subj_idx += 1
return data, subject_to_number
def get_babyrobot_data(subjects=list(range(0,31))):
data, subject_to_number = get_babyrobot_annotations()
faces, bodies, lengths, hands_right, hands_left, Y, Y_face, Y_body, raw_face_paths = [], [], [], [], [], [], [], [], []
paths = []
flow_bodies, flow_hands_right, flow_hands_left = [], [], []
bodies_side, hands_right_side, hands_left_side = [], [], []
groups = []
for video in data:
label = video['emotion']
label_body = label if video['does_emotion_body'] == "yes" else 6 # the hierarchical body label is equal to the whole body emotion label if the child did the emotion with the body or neutral otherwise
label_face = label if video['does_emotion_face'] == "yes" else 6 # the hierarchical face label is equal to the whole body emotion label if the child did the emotion with the face or neutral otherwise
groups.append(subject_to_number[video['subject']])
# ========================= Load Openface Features ==========================
name = video['path'].split("/")[-1]
csv = os.path.join(video['path'], "openface_output.csv") # path of csv openface file
seq = pd.read_csv(csv, delimiter=",")
seq.columns = seq.columns.str.strip()
seq = seq.values.astype(np.float32)
# ========================= Load OpenPose Features ==========================
json_dir = os.path.join(video['path'] + "/openpose_output/json")
if not os.path.exists(json_dir):
print(json_dir)
raise
json_list = sorted(os.listdir(json_dir))
keypoints_array, hand_left_keypoints_array, hand_right_keypoints_array = get_keypoints_from_json_list(
json_list, json_dir, video['subject'], video['emotion'], visualize=False)
keypoints_array = np.stack(keypoints_array).astype(np.float32)
hand_right_keypoints_array = np.stack(hand_right_keypoints_array).astype(np.float32)
hand_left_keypoints_array = np.stack(hand_left_keypoints_array).astype(np.float32)
hands_right.append(hand_right_keypoints_array)
hands_left.append(hand_left_keypoints_array)
bodies.append(keypoints_array)
faces.append(seq)
lengths.append(keypoints_array.shape[0])
Y.append(label)
Y_face.append(label_face)
Y_body.append(label_body)
paths.append(video['path'])
return faces, bodies, hands_right, hands_left, lengths, Y, Y_face, Y_body, paths, groups
def get_keypoints_from_json_list(json_list, json_dir, subject=None,emotion=None, visualize=False):
global k1,k2
keypoints_array, hand_left_keypoints_array, hand_right_keypoints_array = [], [], []
is_first = True
visualization_counter = 1
for json_file in json_list:
if not json_file.endswith(".json"):
raise
js = os.path.join(json_dir, json_file)
with open(js) as f:
json_data = json.load(f)
# ========================= Load OpenPose Features ==========================
if len(json_data['people']) == 0:
keypoints = np.zeros(75, dtype=np.float32)
hand_left_keypoints = np.zeros(63, dtype=np.float32)
hand_right_keypoints = np.zeros(63, dtype=np.float32)
else:
keypoints = np.asarray(json_data['people'][0]['pose_keypoints_2d'], dtype=np.float32)
hand_left_keypoints = np.asarray(json_data['people'][0]['hand_left_keypoints_2d'], dtype=np.float32)
hand_right_keypoints = np.asarray(json_data['people'][0]['hand_right_keypoints_2d'], dtype=np.float32)
keypoints = np.reshape(keypoints, (-1, 3)) # reshape to num_points x dimension
hand_left_keypoints = np.reshape(hand_left_keypoints, (-1, 3)) # reshape to num_points x dimension
hand_right_keypoints = np.reshape(hand_right_keypoints, (-1, 3)) # reshape to num_points x dimension
# ========================= Spatial Normalization ==========================
if visualize:
visualize_skeleton_openpose(keypoints,hand_left_keypoints, hand_right_keypoints, filename="figs/%04d.jpg"%visualization_counter)
visualization_counter+=1
normalize_point_x = keypoints[8, 0]
normalize_point_y = keypoints[8, 1]
keypoints[:, 0] -= normalize_point_x
keypoints[:, 1] -= normalize_point_y
hand_left_keypoints[:, 0] = hand_left_keypoints[:, 0] - hand_left_keypoints[0, 0]
hand_left_keypoints[:, 1] = hand_left_keypoints[:, 1] - hand_left_keypoints[0, 1]
hand_right_keypoints[:, 0] = hand_right_keypoints[:, 0] - hand_right_keypoints[0,0]
hand_right_keypoints[:, 1] = hand_right_keypoints[:, 1] - hand_right_keypoints[0,1]
keypoints_array.append(np.reshape(keypoints, (-1)))
hand_left_keypoints_array.append(np.reshape(hand_left_keypoints, (-1)))
hand_right_keypoints_array.append(np.reshape(hand_right_keypoints, (-1)))
if visualize:
os.system("ffmpeg -framerate 30 -i figs_tmp/%%04d.jpg -c:v libx264 -pix_fmt yuv420p figs_tmp/%s_%s.mp4" % (subject,emotion))
os.system("find figs_tmp/ -maxdepth 1 -type f -iname \*.jpg -delete")
return keypoints_array, hand_left_keypoints_array, hand_right_keypoints_array
class BodyFaceDataset(data.Dataset):
def __init__(self, args, data=None, indices=None, subjects=None, phase=None):
self.args = args
self.phase = phase
if args.db == "babyrobot":
if data != None:
faces, bodies, hands_right, hands_left, lengths, Y, Y_face, Y_body, paths, groups = data
self.faces = [faces[x] for x in indices]
self.bodies = [bodies[x] for x in indices]
self.hands_right = [hands_right[x] for x in indices]
self.hands_left = [hands_left[x] for x in indices]
self.lengths = [lengths[x] for x in indices]
self.Y = [Y[x] for x in indices]
self.Y_face = [Y_face[x] for x in indices]
self.Y_body = [Y_body[x] for x in indices]
self.paths = [paths[x] for x in indices]
self.groups = [groups[x] for x in indices]
elif subjects !=None:
self.faces, self.bodies, self.hands_right, self.hands_left, self.lengths, self.Y, self.Y_face, self.Y_body, self.paths, self.groups = get_babyrobot_data(subjects=subjects)
self.lengths = []
for index in range(len(self.bodies)):
self.lengths.append(self.bodies[index].shape[0])
self.features = []
for index in range(len(self.bodies)):
features_path = self.paths[index] + "/cnn_features"
features = torch.load(features_path, map_location=lambda storage, loc: storage)
self.features.append(features)
def set_scaler(self, scaler):
self.scaler = scaler
self.hands_right = [scaler['hands_right'].transform(x) for x in self.hands_right]
self.hands_left = [scaler['hands_left'].transform(x) for x in self.hands_left]
self.bodies = [scaler['bodies'].transform(x) for x in self.bodies]
self.faces = [scaler['faces'].transform(x) for x in self.faces]
def to_tensors(self):
self.hands_right = [torch.from_numpy(x).float() for x in self.hands_right]
self.hands_left = [torch.from_numpy(x).float() for x in self.hands_left]
self.bodies = [torch.from_numpy(x).float() for x in self.bodies]
self.faces = [torch.from_numpy(x).float() for x in self.faces]
def prepad(self):
""" prepad sequences to the max length sequence of each database """
max_len=323
self.bodies = pad_sequence(self.bodies, batch_first=True, max_len = max_len)
self.hands_right = pad_sequence(self.hands_right, batch_first=True, max_len = max_len)
self.hands_left = pad_sequence(self.hands_left, batch_first=True, max_len = max_len)
self.faces = pad_sequence(self.faces, batch_first=True, max_len = max_len)
self.features = pad_sequence(self.features, batch_first=True, max_len=max_len)
def __len__(self):
return len(self.Y)
def __getitem__(self, index):
v = time.time()
body = self.bodies[index]
hand_right = self.hands_right[index]
hand_left = self.hands_left[index]
face = self.faces[index]
length = self.lengths[index]
if self.args.use_cnn_features:
features = self.features[index]
else:
features = torch.Tensor(1)
if self.args.db == "babyrobot":
label_face = self.Y_face[index]
label_body = self.Y_body[index]
return {
"face": face,
"body": body,
"hand_left": hand_left,
"hand_right": hand_right,
"label": self.Y[index],
"label_face": label_face,
"label_body": label_body,
"length": length,
"paths": self.paths[index],
"facial_cnn_features": features
}