-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.py
711 lines (568 loc) · 24.6 KB
/
data.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
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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
import download
from torchvision import transforms
from PIL import Image
from torch.utils.data import DataLoader
import numpy as np
import torch
import os, cv2
from PIL import Image, ImageOps
from scipy import io
import random
def _get_file_list(data_path):
"""This function detects all image files within the specified parent
directory for either training or testing. The path content cannot
be empty, otherwise an error occurs.
Args:
data_path (str): Points to the directory where training or testing
data instances are stored.
Returns:
list, str: A sorted list that holds the paths to all file instances.
"""
data_list = []
if os.path.isfile(data_path):
data_list.append(data_path)
else:
for subdir, dirs, files in os.walk(data_path):
for file in files:
if file.lower().endswith((".png", ".jpg", ".jpeg", ".mat")):
data_list.append(os.path.join(subdir, file))
data_list.sort()
if not data_list:
raise FileNotFoundError("No data was found")
return data_list
def _check_consistency(zipped_file_lists, n_total_files):
"""A consistency check that makes sure all files could successfully be
found and stimuli names correspond to the ones of ground truth maps.
Args:
zipped_file_lists (tuple, str): A tuple of train and valid path names.
n_total_files (int): The total number of files expected in the list.
"""
assert len(list(zipped_file_lists)) == n_total_files, "Files are missing"
for file_tuple in zipped_file_lists:
file_names = [os.path.basename(entry) for entry in list(file_tuple)]
file_names = [os.path.splitext(entry)[0] for entry in file_names]
file_names = [entry.replace("_fixMap", "") for entry in file_names]
file_names = [entry.replace("_fixPts", "") for entry in file_names]
assert len(set(file_names)) == 1, "File name mismatch"
def _get_random_indices(list_length):
"""A helper function to generate an array of randomly shuffled indices
to divide the MIT1003 and CAT2000 datasets into training and validation
instances.
Args:
list_length (int): The number of indices that is randomly shuffled.
Returns:
array, int: A 1D array that contains the shuffled data indices.
"""
indices = np.arange(list_length)
prng = np.random.RandomState(42)
prng.shuffle(indices)
return indices
class SaliconDataset(DataLoader):
def __init__(self, data_path, train=False, exten='.png', input_size_h=256, input_size_w=256):
self.data_path = data_path + "salicon/"
self.train = train
if not os.path.exists(self.data_path):
self.parent_path = os.path.dirname(self.data_path[:-1])
self.parent_path = os.path.join(self.parent_path, "")
download.download_salicon(self.parent_path)
path = "train/"
if not self.train:
path = "val/"
self.img_dir = self.data_path + "stimuli/" + path
self.gt_dir = self.data_path + "saliency/" + path
self.fix_dir = self.data_path + "fixations/" + path
self.img_ids = [nm.split(".")[0] for nm in os.listdir(self.img_dir)]
self.exten = exten
self.input_size_h = input_size_h
self.input_size_w = input_size_w
self.gt_size = [640,480]
self.mean = [0.485, 0.456, 0.406]
self.std = [0.229, 0.224, 0.225]
self.img_transform = transforms.Compose([
transforms.Resize((self.input_size_h, self.input_size_w)),
#transforms.RandomAutocontrast(p=0.5),
#transforms.RandomEqualize(p=0.5),
#transforms.GaussianBlur(kernel_size=(5, 9), sigma=(0.1, 5)),
transforms.ColorJitter(
brightness=0.4,
contrast=0.4,
saturation=0.4,
hue=0.2),
transforms.ToTensor(),
transforms.Normalize(self.mean, self.std),
#transforms.RandomErasing(p=0.5, scale=(0.02, 0.33), ratio=(0.3, 3.3), value=0, inplace=False),
])
self.img_transform_val = transforms.Compose([
transforms.Resize((self.input_size_h, self.input_size_w)),
transforms.ToTensor(),
transforms.Normalize(self.mean, self.std),
])
def __getitem__(self, idx):
img_id = self.img_ids[idx]
img_path = os.path.join(self.img_dir, img_id + ".jpg")
gt_path = os.path.join(self.gt_dir, img_id + self.exten)
fix_path = os.path.join(self.fix_dir, img_id + ".mat")
img = Image.open(img_path).convert('RGB')
gt = Image.open(gt_path).convert('L')
fixations = self.mat_loader(fix_path, (self.gt_size[0],self.gt_size[1]))
fixations = self.pts2pil(fixations, img)
if self.train:
if random.random() > 0.5:
img = ImageOps.mirror(img)
gt = ImageOps.mirror(gt)
fixations = ImageOps.mirror(fixations)
gt = np.array(gt).astype('float')
gt = cv2.resize(gt, (self.gt_size[0],self.gt_size[1]))
fixations= np.array(fixations).astype('float')
if self.train:
img = self.img_transform(img)
else:
img = self.img_transform_val(img)
if np.max(gt) > 1.0:
gt = gt / 255.0
fixations = (fixations > 0.5).astype('float')
assert np.min(gt)>=0.0 and np.max(gt)<=1.0
assert np.min(fixations)==0.0 and np.max(fixations)==1.0
return img, torch.FloatTensor(gt), torch.FloatTensor(fixations)
def __len__(self):
return len(self.img_ids)
def pts2pil(self, fixpts, img):
fixmap = Image.new("L", img.size)
for p in fixpts:
fixmap.putpixel((p[0], p[1]), 255)
return fixmap
def mat_loader(self, path, shape):
mat = io.loadmat(path)["gaze"]
fix = []
for row in mat:
data = row[0].tolist()[2]
for p in data:
if p[0]<shape[0] and p[1]<shape[1]: # remove noise at the boundary.
fix.append(p.tolist())
return fix
class TestLoader(DataLoader):
def __init__(self, img_dir, img_ids):
self.img_dir = img_dir
self.img_ids = img_ids
self.img_transform = transforms.Compose([
transforms.Resize((256, 256)),
transforms.ToTensor(),
transforms.Normalize([0.5, 0.5, 0.5],
[0.5, 0.5, 0.5])
])
def __getitem__(self, idx):
img_id = self.img_ids[idx]
img_path = os.path.join(self.img_dir, img_id)
img = Image.open(img_path).convert('RGB')
sz = img.size
img = self.img_transform(img)
return img, img_id, sz
def __len__(self):
return len(self.img_ids)
class Mit1003Dataset(DataLoader):
def __init__(self, data_path, train=False, exten='.png', input_size_h=256, input_size_w=256):
self.data_path = data_path + "mit1003/"
self.train = train
if not os.path.exists(self.data_path):
self.parent_path = os.path.dirname(self.data_path[:-1])
self.parent_path = os.path.join(self.parent_path, "")
download.download_mit1003(self.parent_path)
self.img_dir = self.data_path + "stimuli/"
self.gt_dir = self.data_path + "saliency/"
self.fix_dir = self.data_path + "fixations/"
self.n_train = 803
self.n_valid = 200
list_x = _get_file_list(self.img_dir)
list_y = _get_file_list(self.gt_dir)
list_f = _get_file_list(self.fix_dir)
_check_consistency(zip(list_x, list_y, list_f), 1003)
indices = _get_random_indices(1003)
if self.train:
excerpt = indices[:self.n_train]
else:
excerpt = indices[self.n_train:]
self.lists_x = [list_x[idx] for idx in excerpt]
self.lists_y = [list_y[idx] for idx in excerpt]
self.lists_f = [list_f[idx] for idx in excerpt]
self.exten = exten
self.input_size_h = input_size_h
self.input_size_w = input_size_w
self.gt_size = [384,384]
self.img_transform = transforms.Compose([
transforms.Resize((self.input_size_h, self.input_size_w)),
# transforms.ColorJitter(
# brightness=0.4,
# contrast=0.4,
# saturation=0.4,
# hue=0.2),
transforms.ToTensor(),
transforms.Normalize([0.5, 0.5, 0.5],
[0.5, 0.5, 0.5])
])
def __getitem__(self, idx):
img_path = self.lists_x[idx]
gt_path = self.lists_y[idx]
fix_path = self.lists_f[idx]
img = Image.open(img_path).convert('RGB')
gt = Image.open(gt_path).convert('L')
fixations = Image.open(fix_path).convert('L')
if self.train:
if random.random() > 0.5:
img = ImageOps.mirror(img)
gt = ImageOps.mirror(gt)
fixations = ImageOps.mirror(fixations)
gt = np.array(gt).astype('float')
gt = cv2.resize(gt, (self.gt_size[0],self.gt_size[1]))
fixations = np.array(fixations).astype('float')
fixations = cv2.resize(fixations, (self.gt_size[0],self.gt_size[1]))
img = self.img_transform(img)
if np.max(gt) > 1.0:
gt = gt / 255.0
fixations = (fixations > 0.5).astype('float')
assert np.min(gt)>=0.0 and np.max(gt)<=1.0
assert np.min(fixations)==0.0 and np.max(fixations)==1.0
return img, torch.FloatTensor(gt), torch.FloatTensor(fixations)
def __len__(self):
return len(self.lists_x)
class CAT2000Dataset(DataLoader):
def __init__(self, data_path, train=False, exten='.png', input_size_h=256, input_size_w=256):
self.data_path = data_path + "cat2000/"
self.train = train
if not os.path.exists(self.data_path):
self.parent_path = os.path.dirname(self.data_path[:-1])
self.parent_path = os.path.join(self.parent_path, "")
download.download_cat2000(self.parent_path)
self.img_dir = self.data_path + "stimuli/"
self.gt_dir = self.data_path + "saliency/"
self.fix_dir = self.data_path + "fixations/"
self.n_train = 1600
self.n_valid = 400
list_x = _get_file_list(self.img_dir)
list_y = _get_file_list(self.gt_dir)
list_f = _get_file_list(self.fix_dir)
_check_consistency(zip(list_x, list_y, list_f), 2000)
indices = _get_random_indices(100)
if self.train:
# sample uniformly from all 20 categories
ratio = self.n_train * 100 // 2000
excerpt = np.tile(indices[:ratio], 20)
for idx, _ in enumerate(excerpt):
excerpt[idx] = excerpt[idx] + idx // ratio * 100
else:
# sample uniformly from all 20 categories
ratio = self.n_valid * 100 // 2000
excerpt = np.tile(indices[-ratio:], 20)
for idx, _ in enumerate(excerpt):
excerpt[idx] = excerpt[idx] + idx // ratio * 100
self.lists_x = [list_x[idx] for idx in excerpt]
self.lists_y = [list_y[idx] for idx in excerpt]
self.lists_f = [list_f[idx] for idx in excerpt]
self.input_size_h = input_size_h
self.input_size_w = input_size_w
self.gt_size = [384,384]
self.img_transform = transforms.Compose([
transforms.Resize((self.input_size_h, self.input_size_w)),
# transforms.ColorJitter(
# brightness=0.4,
# contrast=0.4,
# saturation=0.4,
# hue=0.2),
transforms.ToTensor(),
transforms.Normalize([0.5, 0.5, 0.5],
[0.5, 0.5, 0.5])
])
def __getitem__(self, idx):
img_path = self.lists_x[idx]
gt_path = self.lists_y[idx]
fix_path = self.lists_f[idx]
img = Image.open(img_path).convert('RGB')
gt = Image.open(gt_path).convert('L')
fixations = self.mat_loader(fix_path, (self.gt_size[0],self.gt_size[1]))
#fixations = self.pts2pil(fixations, img)
if self.train:
if random.random() > 0.5:
img = ImageOps.mirror(img)
gt = ImageOps.mirror(gt)
fixations = np.flip(fixations)
# fixations = ImageOps.mirror(fixations)
gt = np.array(gt).astype('float')
gt = cv2.resize(gt, (self.gt_size[0],self.gt_size[1]))
fixations = np.array(fixations).astype('float')
fixations = cv2.resize(fixations, (self.gt_size[0],self.gt_size[1]))
img = self.img_transform(img)
if np.max(gt) > 1.0:
gt = gt / 255.0
fixations = (fixations > 0.5).astype('float')
assert np.min(gt)>=0.0 and np.max(gt)<=1.0
assert np.min(fixations)==0.0 and np.max(fixations)==1.0
return img, torch.FloatTensor(gt), torch.FloatTensor(fixations)
def __len__(self):
return len(self.lists_x)
def pts2pil(self, fixpts, img):
fixmap = Image.new("L", img.size)
for p in fixpts:
fixmap.putpixel((p[0], p[1]), 255)
return fixmap
def mat_loader(self, path, shape):
mat = io.loadmat(path)["fixLocs"]
return mat
class PASCALSDataset(DataLoader):
def __init__(self, data_path, train=False, exten='.png', input_size_h=256, input_size_w=256):
self.data_path = data_path + "pascals/"
self.train = train
if not os.path.exists(self.data_path):
self.parent_path = os.path.dirname(self.data_path[:-1])
self.parent_path = os.path.join(self.parent_path, "")
download.download_pascals(self.parent_path)
self.img_dir = self.data_path + "stimuli/"
self.gt_dir = self.data_path + "saliency/"
self.fix_dir = self.data_path + "fixations/"
self.n_train = 650
self.n_valid = 200
list_x = _get_file_list(self.img_dir)
list_y = _get_file_list(self.gt_dir)
list_f = _get_file_list(self.fix_dir)
_check_consistency(zip(list_x, list_y, list_f), 850)
indices = _get_random_indices(850)
if self.train:
excerpt = indices[:self.n_train]
else:
excerpt = indices[self.n_train:]
self.lists_x = [list_x[idx] for idx in excerpt]
self.lists_y = [list_y[idx] for idx in excerpt]
self.lists_f = [list_f[idx] for idx in excerpt]
self.exten = exten
self.input_size_h = input_size_h
self.input_size_w = input_size_w
self.gt_size = [384,384]
self.img_transform = transforms.Compose([
transforms.Resize((self.input_size_h, self.input_size_w)),
# transforms.ColorJitter(
# brightness=0.4,
# contrast=0.4,
# saturation=0.4,
# hue=0.2),
transforms.ToTensor(),
transforms.Normalize([0.5, 0.5, 0.5],
[0.5, 0.5, 0.5])
])
def __getitem__(self, idx):
img_path = self.lists_x[idx]
gt_path = self.lists_y[idx]
fix_path = self.lists_f[idx]
img = Image.open(img_path).convert('RGB')
gt = Image.open(gt_path).convert('L')
fixations = Image.open(fix_path).convert('L')
if self.train:
if random.random() > 0.5:
img = ImageOps.mirror(img)
gt = ImageOps.mirror(gt)
fixations = ImageOps.mirror(fixations)
gt = np.array(gt).astype('float')
gt = cv2.resize(gt, (self.gt_size[0],self.gt_size[1]))
fixations = np.array(fixations).astype('float')
fixations = cv2.resize(fixations, (self.gt_size[0],self.gt_size[1]))
img = self.img_transform(img)
if np.max(gt) > 1.0:
gt = gt / 255.0
fixations = (fixations > 0.5).astype('float')
assert np.min(gt)>=0.0 and np.max(gt)<=1.0
assert np.min(fixations)==0.0 and np.max(fixations)==1.0
return img, torch.FloatTensor(gt), torch.FloatTensor(fixations)
def __len__(self):
return len(self.lists_x)
class OSIEDataset(DataLoader):
def __init__(self, data_path, train=False, exten='.png', input_size_h=256, input_size_w=256):
self.data_path = data_path + "osie/"
self.train = train
if not os.path.exists(self.data_path):
self.parent_path = os.path.dirname(self.data_path[:-1])
self.parent_path = os.path.join(self.parent_path, "")
download.download_osie(self.parent_path)
self.img_dir = self.data_path + "stimuli/"
self.gt_dir = self.data_path + "saliency/"
self.fix_dir = self.data_path + "fixations/"
self.n_train = 500
self.n_valid = 200
list_x = _get_file_list(self.img_dir)
list_y = _get_file_list(self.gt_dir)
list_f = _get_file_list(self.fix_dir)
_check_consistency(zip(list_x, list_y, list_f), 700)
indices = _get_random_indices(700)
if self.train:
excerpt = indices[:self.n_train]
else:
excerpt = indices[self.n_train:]
self.lists_x = [list_x[idx] for idx in excerpt]
self.lists_y = [list_y[idx] for idx in excerpt]
self.lists_f = [list_f[idx] for idx in excerpt]
self.exten = exten
self.input_size_h = input_size_h
self.input_size_w = input_size_w
self.gt_size = [384,384]
self.img_transform = transforms.Compose([
transforms.Resize((self.input_size_h, self.input_size_w)),
# transforms.ColorJitter(
# brightness=0.4,
# contrast=0.4,
# saturation=0.4,
# hue=0.2),
transforms.ToTensor(),
transforms.Normalize([0.5, 0.5, 0.5],
[0.5, 0.5, 0.5])
])
def __getitem__(self, idx):
img_path = self.lists_x[idx]
gt_path = self.lists_y[idx]
fix_path = self.lists_f[idx]
img = Image.open(img_path).convert('RGB')
gt = Image.open(gt_path).convert('L')
fixations = Image.open(fix_path).convert('L')
if self.train:
if random.random() > 0.5:
img = ImageOps.mirror(img)
gt = ImageOps.mirror(gt)
fixations = ImageOps.mirror(fixations)
gt = np.array(gt).astype('float')
gt = cv2.resize(gt, (self.gt_size[0],self.gt_size[1]))
fixations = np.array(fixations).astype('float')
fixations = cv2.resize(fixations, (self.gt_size[0],self.gt_size[1]))
img = self.img_transform(img)
if np.max(gt) > 1.0:
gt = gt / 255.0
fixations = (fixations > 0.5).astype('float')
assert np.min(gt)>=0.0 and np.max(gt)<=1.0
assert np.min(fixations)==0.0 and np.max(fixations)==1.0
return img, torch.FloatTensor(gt), torch.FloatTensor(fixations)
def __len__(self):
return len(self.lists_x)
class DUTOMRONDataset(DataLoader):
def __init__(self, data_path, train=False, exten='.png', input_size_h=256, input_size_w=256):
self.data_path = data_path + "dutomron/"
self.train = train
if not os.path.exists(self.data_path):
self.parent_path = os.path.dirname(self.data_path[:-1])
self.parent_path = os.path.join(self.parent_path, "")
download.download_dutomron(self.parent_path)
self.img_dir = self.data_path + "stimuli/"
self.gt_dir = self.data_path + "saliency/"
self.fix_dir = self.data_path + "fixations/"
self.n_train = 4168
self.n_valid = 1000
list_x = _get_file_list(self.img_dir)
list_y = _get_file_list(self.gt_dir)
list_f = _get_file_list(self.fix_dir)
_check_consistency(zip(list_x, list_y, list_f), 5168)
indices = _get_random_indices(5168)
if self.train:
excerpt = indices[:self.n_train]
else:
excerpt = indices[self.n_train:]
self.lists_x = [list_x[idx] for idx in excerpt]
self.lists_y = [list_y[idx] for idx in excerpt]
self.lists_f = [list_f[idx] for idx in excerpt]
self.exten = exten
self.input_size_h = input_size_h
self.input_size_w = input_size_w
self.gt_size = [384,384]
self.img_transform = transforms.Compose([
transforms.Resize((self.input_size_h, self.input_size_w)),
# transforms.ColorJitter(
# brightness=0.4,
# contrast=0.4,
# saturation=0.4,
# hue=0.2),
transforms.ToTensor(),
transforms.Normalize([0.5, 0.5, 0.5],
[0.5, 0.5, 0.5])
])
def __getitem__(self, idx):
img_path = self.lists_x[idx]
gt_path = self.lists_y[idx]
fix_path = self.lists_f[idx]
img = Image.open(img_path).convert('RGB')
gt = Image.open(gt_path).convert('L')
fixations = Image.open(fix_path).convert('L')
if self.train:
if random.random() > 0.5:
img = ImageOps.mirror(img)
gt = ImageOps.mirror(gt)
fixations = ImageOps.mirror(fixations)
gt = np.array(gt).astype('float')
gt = cv2.resize(gt, (self.gt_size[0],self.gt_size[1]))
fixations = np.array(fixations).astype('float')
fixations = cv2.resize(fixations, (self.gt_size[0],self.gt_size[1]))
img = self.img_transform(img)
if np.max(gt) > 1.0:
gt = gt / 255.0
fixations = (fixations > 0.5).astype('float')
assert np.min(gt)>=0.0 and np.max(gt)<=1.0
assert np.min(fixations)==0.0 and np.max(fixations)==1.0
return img, torch.FloatTensor(gt), torch.FloatTensor(fixations)
def __len__(self):
return len(self.lists_x)
class FIWIDataset(DataLoader):
def __init__(self, data_path, train=False, exten='.png', input_size_h=256, input_size_w=256):
self.data_path = data_path + "fiwi/"
self.train = train
if not os.path.exists(self.data_path):
self.parent_path = os.path.dirname(self.data_path[:-1])
self.parent_path = os.path.join(self.parent_path, "")
download.download_fiwi(self.parent_path)
self.img_dir = self.data_path + "stimuli/"
self.gt_dir = self.data_path + "saliency/"
self.fix_dir = self.data_path + "fixations/"
self.n_train = 99
self.n_valid = 50
list_x = _get_file_list(self.img_dir)
list_y = _get_file_list(self.gt_dir)
list_f = _get_file_list(self.fix_dir)
_check_consistency(zip(list_x, list_y, list_f), 149)
indices = _get_random_indices(149)
if self.train:
excerpt = indices[:self.n_train]
else:
excerpt = indices[self.n_train:]
self.lists_x = [list_x[idx] for idx in excerpt]
self.lists_y = [list_y[idx] for idx in excerpt]
self.lists_f = [list_f[idx] for idx in excerpt]
self.exten = exten
self.input_size_h = input_size_h
self.input_size_w = input_size_w
self.gt_size = [384,384]
self.img_transform = transforms.Compose([
transforms.Resize((self.input_size_h, self.input_size_w)),
# transforms.ColorJitter(
# brightness=0.4,
# contrast=0.4,
# saturation=0.4,
# hue=0.2),
transforms.ToTensor(),
transforms.Normalize([0.5, 0.5, 0.5],
[0.5, 0.5, 0.5])
])
def __getitem__(self, idx):
img_path = self.lists_x[idx]
gt_path = self.lists_y[idx]
fix_path = self.lists_f[idx]
img = Image.open(img_path).convert('RGB')
gt = Image.open(gt_path).convert('L')
fixations = Image.open(fix_path).convert('L')
if self.train:
if random.random() > 0.5:
img = ImageOps.mirror(img)
gt = ImageOps.mirror(gt)
fixations = ImageOps.mirror(fixations)
gt = np.array(gt).astype('float')
gt = cv2.resize(gt, (self.gt_size[0],self.gt_size[1]))
fixations = np.array(fixations).astype('float')
fixations = cv2.resize(fixations, (self.gt_size[0],self.gt_size[1]))
img = self.img_transform(img)
if np.max(gt) > 1.0:
gt = gt / 255.0
fixations = (fixations > 0.5).astype('float')
assert np.min(gt)>=0.0 and np.max(gt)<=1.0
assert np.min(fixations)==0.0 and np.max(fixations)==1.0
return img, torch.FloatTensor(gt), torch.FloatTensor(fixations)
def __len__(self):
return len(self.lists_x)