File size: 29,574 Bytes
8bc3305 | 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 | # author: Zhiyuan Yan
# email: zhiyuanyan@link.cuhk.edu.cn
# date: 2023-03-29
# description: Data pre-processing script for deepfake dataset.
"""
After running this code, it will generates a json file looks like the below structure for re-arrange data.
{
"FaceForensics++": {
"Deepfakes": {
"video1": {
"label": "fake",
"frames": [
"/path/to/frames/video1/frame1.png",
"/path/to/frames/video1/frame2.png",
...
]
},
"video2": {
"label": "fake",
"frames": [
"/path/to/frames/video2/frame1.png",
"/path/to/frames/video2/frame2.png",
...
]
},
...
},
"original_sequences": {
"youtube": {
"video1": {
"label": "real",
"frames": [
"/path/to/frames/video1/frame1.png",
"/path/to/frames/video1/frame2.png",
...
]
},
"video2": {
"label": "real",
"frames": [
"/path/to/frames/video2/frame1.png",
"/path/to/frames/video2/frame2.png",
...
]
},
...
}
}
}
}
"""
import os
import glob
import re
import cv2
import json
import yaml
import pandas as pd
from pathlib import Path
def generate_dataset_file(dataset_name, dataset_root_path, output_file_path, compression_level='c23', perturbation = 'end_to_end'):
"""
Description:
- Generate a JSON file containing information about the specified datasets' videos and frames.
Args:
- dataset: The name of the dataset.
- dataset_path: The path to the dataset.
- output_file_path: The path to the output JSON file.
- compression_level: The compression level of the dataset.
"""
# Initialize an empty dictionary to store dataset information.
dataset_dict = {}
## FaceForensics++ dataset or DeepfakeDetection dataset
## Note: DeepfakeDetection dataset is a subset of FaceForensics++ dataset
if dataset_name == 'FaceForensics++' or dataset_name == 'DeepFakeDetection' or dataset_name == 'FaceShifter':
ff_dict = {
'Deepfakes': 'FF-DF',
'Face2Face': 'FF-F2F',
'FaceSwap': 'FF-FS',
'Real': 'FF-real',
'DFD_Real': 'DFD_real',
'NeuralTextures': 'FF-NT',
'FaceShifter': 'FF-FH',
'DeepFakeDetection': 'DFD_fake',
'DeepFakeDetection_original': 'DFD_real',
}
# Load the JSON files for data split
dataset_path = os.path.join(dataset_root_path, 'FaceForensics++')
# Load the JSON files for data split
with open(file=os.path.join(os.path.join(dataset_root_path, 'FaceForensics++', 'train.json')), mode='r') as f:
train_json = json.load(f)
with open(file=os.path.join(os.path.join(dataset_root_path, 'FaceForensics++', 'val.json')), mode='r') as f:
val_json = json.load(f)
with open(file=os.path.join(os.path.join(dataset_root_path, 'FaceForensics++', 'test.json')), mode='r') as f:
test_json = json.load(f)
# Create a dictionary for searching the data split
video_to_mode = dict()
for d1, d2 in train_json:
video_to_mode[d1] = 'train'
video_to_mode[d2] = 'train'
video_to_mode[d1+'_'+d2] = 'train'
video_to_mode[d2+'_'+d1] = 'train'
for d1, d2 in val_json:
video_to_mode[d1] = 'val'
video_to_mode[d2] = 'val'
video_to_mode[d1+'_'+d2] = 'val'
video_to_mode[d2+'_'+d1] = 'val'
for d1, d2 in test_json:
video_to_mode[d1] = 'test'
video_to_mode[d2] = 'test'
video_to_mode[d1+'_'+d2] = 'test'
video_to_mode[d2+'_'+d1] = 'test'
# FaceForensics++ real dataset
if os.path.isdir(dataset_path) and os.path.isdir(os.path.join(dataset_path, 'original_sequences')):
label = 'Real'
dataset_dict['FaceForensics++'] = {}
dataset_dict['FaceForensics++']['FF-real'] = {}
dataset_dict['FaceForensics++']['DFD_real'] = {}
# Iterate over all compression levels: c23, c40, raw
dataset_dict['FaceForensics++']['FF-real']['train'] = {}
dataset_dict['FaceForensics++']['FF-real']['test'] = {}
dataset_dict['FaceForensics++']['FF-real']['val'] = {}
for compression_level in os.scandir(os.path.join(dataset_path, 'original_sequences', 'youtube')):
if compression_level.is_dir():
compression_level = compression_level.name
dataset_dict['FaceForensics++']['FF-real']['train'][compression_level] = {}
dataset_dict['FaceForensics++']['FF-real']['test'][compression_level] = {}
dataset_dict['FaceForensics++']['FF-real']['val'][compression_level] = {}
# Iterate over all videos
for video_path in os.scandir(os.path.join(dataset_path, 'original_sequences', 'youtube', compression_level, 'frames')):
if video_path.is_dir():
video_name = video_path.name
mode = video_to_mode[video_name]
frame_paths = [os.path.join(video_path, frame.name) for frame in os.scandir(video_path)]
dataset_dict['FaceForensics++']['FF-real'][mode][compression_level][video_name] = {'label': ff_dict[label], 'frames': frame_paths}
label = 'DFD_Real'
# Same operations for DeepfakeDetection real dataset
dataset_dict['FaceForensics++']['DFD_real']['train'] = {}
dataset_dict['FaceForensics++']['DFD_real']['test'] = {}
dataset_dict['FaceForensics++']['DFD_real']['val'] = {}
for compression_level in os.scandir(os.path.join(dataset_path, 'original_sequences', 'actors')):
if compression_level.is_dir() and compression_level.name in ["c23", "c40", "raw"]:
compression_level = compression_level.name
dataset_dict['FaceForensics++']['DFD_real']['train'][compression_level] = {}
dataset_dict['FaceForensics++']['DFD_real']['test'][compression_level] = {}
dataset_dict['FaceForensics++']['DFD_real']['val'][compression_level] = {}
# Iterate over all videos
for video_path in os.scandir(os.path.join(dataset_path, 'original_sequences', 'actors', compression_level, 'frames')):
if video_path.is_dir():
video_name = video_path.name
frame_paths = [os.path.join(video_path, frame.name) for frame in os.scandir(video_path)]
dataset_dict['FaceForensics++']['DFD_real']['train'][compression_level][video_name] = {'label': ff_dict[label], 'frames': frame_paths}
dataset_dict['FaceForensics++']['DFD_real']['test'][compression_level][video_name] = {'label': ff_dict[label], 'frames': frame_paths}
dataset_dict['FaceForensics++']['DFD_real']['val'][compression_level][video_name] = {'label': ff_dict[label], 'frames': frame_paths}
# FaceForensics++ fake datasets
if os.path.isdir(os.path.join(dataset_path, 'manipulated_sequences')):
for label_dir in os.scandir(os.path.join(dataset_path, 'manipulated_sequences')):
if label_dir.is_dir():
label = label_dir.name
dataset_dict['FaceForensics++'][ff_dict[label]] = {}
dataset_dict['FaceForensics++'][ff_dict[label]]['train'] = {}
dataset_dict['FaceForensics++'][ff_dict[label]]['test'] = {}
dataset_dict['FaceForensics++'][ff_dict[label]]['val'] = {}
# Iterate over all compression levels: c23, c40, raw
for compression_level in os.scandir(os.path.join(dataset_path, 'manipulated_sequences', label)):
if compression_level.is_dir() and compression_level.name in ["c23", "c40", "raw"]:
compression_level = compression_level.name
dataset_dict['FaceForensics++'][ff_dict[label]]['train'][compression_level] = {}
dataset_dict['FaceForensics++'][ff_dict[label]]['test'][compression_level] = {}
dataset_dict['FaceForensics++'][ff_dict[label]]['val'][compression_level] = {}
# Iterate over all videos
for video_path in os.scandir(os.path.join(dataset_path, 'manipulated_sequences', label, compression_level, 'frames')):
if video_path.is_dir():
video_name = video_path.name
frame_paths = [os.path.join(video_path, frame.name) for frame in os.scandir(video_path)]
if label != 'FaceShifter':
mask_paths = os.path.join(dataset_path, 'manipulated_sequences', label, 'c23','masks', video_name)
# mask is all the same for all compression levels
if os.path.exists(mask_paths):
mask_frames_paths = [os.path.join(mask_paths, frame.name) for frame in os.scandir(mask_paths)]
else:
mask_frames_paths = []
try:
mode = video_to_mode[video_name]
dataset_dict['FaceForensics++'][ff_dict[label]][mode][compression_level][video_name] = {'label': ff_dict[label], 'frames': frame_paths, 'masks': mask_frames_paths}
# DeepfakeDetection dataset
except:
dataset_dict['FaceForensics++'][ff_dict[label]]['train'][compression_level][video_name] = {'label': ff_dict[label], 'frames': frame_paths, 'masks': mask_frames_paths}
dataset_dict['FaceForensics++'][ff_dict[label]]['val'][compression_level][video_name] = {'label': ff_dict[label], 'frames': frame_paths, 'masks': mask_frames_paths}
dataset_dict['FaceForensics++'][ff_dict[label]]['test'][compression_level][video_name] = {'label': ff_dict[label], 'frames': frame_paths, 'masks': mask_frames_paths}
# FaceShifter dataset
else:
mode = video_to_mode[video_name]
dataset_dict['FaceForensics++'][ff_dict[label]][mode][compression_level][video_name] = {'label': ff_dict[label], 'frames': frame_paths}
# get the DeepfakeDetection dataset from FaceForensics++ dataset
if dataset_name == 'FaceForensics++':
# Delete the DeepfakeDetection dataset from FaceForensics++ dataset
del dataset_dict['FaceForensics++']['DFD_fake']
del dataset_dict['FaceForensics++']['DFD_real']
del dataset_dict['FaceForensics++']['FF-FH']
elif dataset_name == 'DeepFakeDetection':
# Check if the DeepfakeDetection dataset is in the FaceForensics++ dataset
if 'DFD_fake' in dataset_dict['FaceForensics++'] and \
'DFD_real' in dataset_dict['FaceForensics++']:
# Add the DeepfakeDetection dataset to the dataset_dict
dataset_dict['DeepFakeDetection'] = {
'DFD_fake': dataset_dict['FaceForensics++']['DFD_fake'],
'DFD_real': dataset_dict['FaceForensics++']['DFD_real']
}
del dataset_dict['FaceForensics++']
elif dataset_name == 'FaceShifter':
if 'FF-FH' in dataset_dict['FaceForensics++'] and \
'FF-real' in dataset_dict['FaceForensics++']:
# Add the DeepfakeDetection dataset to the dataset_dict
dataset_dict['FaceShifter'] = {
'FF-FH': dataset_dict['FaceForensics++']['FF-FH'],
'FF-real': dataset_dict['FaceForensics++']['FF-real']
}
del dataset_dict['FaceForensics++']
else:
# TODO
raise ValueError('DeepfakeDetection dataset not found in FaceForensics++ dataset.')
else:
raise ValueError('Invalid dataset name: {}'.format(dataset_name))
# if FaceForensics++, based on label and generate the json
if dataset_name == 'FaceForensics++':
for label, value in dataset_dict['FaceForensics++'].items():
if label != 'FF-real':
with open(os.path.join(output_file_path,f'{label}.json'), 'w') as f:
data = {label: {'FF-real': dataset_dict['FaceForensics++']['FF-real'],
label: value,
}}
json.dump(data, f)
print(f"Finish writing {label}.json")
## Celeb-DF-v1 dataset
## Note: videos in Celeb-DF-v1/2 are not in the same format as in FaceForensics++ dataset
elif dataset_name == 'Celeb-DF-v1':
dataset_path = os.path.join(dataset_root_path, dataset_name)
dataset_dict[dataset_name] = {}
for folder in os.scandir(dataset_path):
if not os.path.isdir(folder):
continue
if folder.name in ['Celeb-real', 'YouTube-real']:
label = 'CelebDFv1_real'
else:
label = 'CelebDFv1_fake'
assert label in ['CelebDFv1_real', 'CelebDFv1_fake'], 'Invalid label: {}'.format(label)
dataset_dict[dataset_name][label] = {}
dataset_dict[dataset_name][label]['train'] = {}
dataset_dict[dataset_name][label]['val'] = {}
dataset_dict[dataset_name][label]['test'] = {}
for video_path in os.scandir(os.path.join(dataset_path, folder.name, 'frames')):
if video_path.is_dir():
video_name = video_path.name
frame_paths = [os.path.join(video_path, frame.name) for frame in os.scandir(video_path)]
dataset_dict[dataset_name][label]['train'][video_name] = {'label': label, 'frames': frame_paths}
# Special case for test&val data of Celeb-DF-v1/2
with open(os.path.join(dataset_root_path, dataset_name, 'List_of_testing_videos.txt'), 'r') as f:
lines = f.readlines()
for line in lines:
if 'real' in line:
label = 'CelebDFv1_real'
elif 'synthesis' in line:
label = 'CelebDFv1_fake'
else:
raise ValueError(f"wrong in processing vidname {dataset_name}: {line}")
vidname = line.split('\n')[0].split('/')[-1].split('.mp4')[0]
frame_paths = glob.glob(
os.path.join(dataset_root_path, dataset_name, line.split(' ')[1].split('/')[0], 'frames', vidname, '*png'))
dataset_dict[dataset_name][label]['test'][vidname] = {'label': label, 'frames': frame_paths}
dataset_dict[dataset_name][label]['val'][vidname] = {'label': label, 'frames': frame_paths}
## Celeb-DF-v2 dataset
## Note: videos in Celeb-DF-v1/2 are not in the same format as in FaceForensics++ dataset
elif dataset_name == 'Celeb-DF-v2':
dataset_path = os.path.join(dataset_root_path, dataset_name)
dataset_dict[dataset_name] = {}
for folder in os.scandir(dataset_path):
if not os.path.isdir(folder):
continue
if folder.name in ['Celeb-real', 'YouTube-real']:
label = 'CelebDFv2_real'
else:
label = 'CelebDFv2_fake'
assert label in ['CelebDFv2_real', 'CelebDFv2_fake'], 'Invalid label: {}'.format(label)
dataset_dict[dataset_name][label] = {}
dataset_dict[dataset_name][label]['train'] = {}
dataset_dict[dataset_name][label]['val'] = {}
dataset_dict[dataset_name][label]['test'] = {}
for video_path in os.scandir(os.path.join(dataset_path, folder.name, 'frames')):
if video_path.is_dir():
video_name = video_path.name
frame_paths = [os.path.join(video_path, frame.name) for frame in os.scandir(video_path)]
dataset_dict[dataset_name][label]['train'][video_name] = {'label': label, 'frames': frame_paths}
# Special case for test&val data of Celeb-DF-v1/2
with open(os.path.join(dataset_root_path, dataset_name, 'List_of_testing_videos.txt'), 'r') as f:
lines = f.readlines()
for line in lines:
if 'real' in line:
label = 'CelebDFv2_real'
elif 'synthesis' in line:
label = 'CelebDFv2_fake'
else:
raise ValueError(f"wrong in processing vidname {dataset_name}: {line}")
vidname = line.split('\n')[0].split('/')[-1].split('.mp4')[0]
frame_paths = glob.glob(
os.path.join(dataset_root_path, dataset_name, line.split(' ')[1].split('/')[0], 'frames', vidname, '*png'))
dataset_dict[dataset_name][label]['test'][vidname] = {'label': label, 'frames': frame_paths}
dataset_dict[dataset_name][label]['val'][vidname] = {'label': label, 'frames': frame_paths}
## DFDCP dataset
elif dataset_name == 'DFDCP':
dataset_path = os.path.join(dataset_root_path, dataset_name)
#initialize the dataset dictionary
dataset_dict[dataset_name] = {'DFDCP_Real': {'train': {}, 'test': {}, 'val': {}},
'DFDCP_FakeA': {'train': {}, 'test': {}, 'val': {}},
'DFDCP_FakeB': {'train': {}, 'test': {}, 'val': {}}}
# Open the dataset information file ('dataset.json') and parse its contents
with open(os.path.join(dataset_path, 'dataset.json' ), 'r') as f:
dataset_info = json.load(f)
# Iterate over the dataset_info dictionary and extract the index and file name for each video
for dataset in dataset_info.keys():
index = dataset.split('/')[0]
vidname = dataset.split('/')[-1].split(".")[0]
if Path(os.path.join(dataset_path, index, 'frames', vidname)).exists():
frame_paths = glob.glob(os.path.join(dataset_path, index, 'frames', vidname, '*png'))
if len(frame_paths) == 0:
continue
label = dataset_info[dataset]['label']
if label == 'real':
label = 'DFDCP_Real'
elif label == 'fake' and index == 'method_A':
label = 'DFDCP_FakeA'
elif label == 'fake' and index == 'method_B':
label = 'DFDCP_FakeB'
else:
raise ValueError(f"wrong in processing vidname {dataset_name}: {line}")
set_attr = dataset_info[dataset]['set'] # train, test, val
dataset_dict[dataset_name][label][set_attr][vidname] = {'label': label, 'frames': frame_paths}
# Special case for val data of DFDCP
for label in ['DFDCP_Real', 'DFDCP_FakeA', 'DFDCP_FakeB']:
dataset_dict[dataset_name][label]['val'] = dataset_dict[dataset_name][label]['test']
## DFDC dataset
elif dataset_name == 'DFDC':
dataset_path = os.path.join(dataset_root_path, dataset_name)
dataset_dict[dataset_name] = {'DFDC_Real': {'train': {}, 'test': {}, 'val': {}},
'DFDC_Fake': {'train': {}, 'test': {}, 'val': {}}}
for folder in os.scandir(dataset_path):
if not os.path.isdir(folder):
continue
if folder.name in ['test']:
# read csv file
df = pd.read_csv(os.path.join(dataset_path,folder.name,'labels.csv'))
labels = ['DFDC_Real','DFDC_Fake']
for index, row in df.iterrows():
vidname = row['filename'].split('.mp4')[0]
label = labels[row['label']]
assert label in ['DFDC_Real','DFDC_Fake'], 'Invalid label: {}'.format(label)
frame_paths = glob.glob(os.path.join(dataset_path, folder.name,'frames', vidname, '*png'))
if len(frame_paths) == 0:
continue
dataset_dict[dataset_name][label]['test'][vidname] = {'label': label, 'frames': frame_paths}
dataset_dict[dataset_name][label]['val'] = {'label': label, 'frames': frame_paths}
elif folder.name in ['train']:
num_file = 0
for dfdc_train_part in os.scandir(os.path.join(dataset_path, folder.name)):
if not os.path.isdir(dfdc_train_part):
continue
num_file += 1
print('processing {}th file in 50 files.'.format(num_file))
with open(os.path.join(dfdc_train_part, 'metadata.json'), 'r') as f:
metadata = json.load(f)
for video_path in os.scandir(os.path.join(dfdc_train_part, 'frames')):
if video_path.is_dir():
video_name = video_path.name
label = metadata[video_name + ".mp4"]["label"]
assert label in ['REAL', 'FAKE'], 'Invalid label: {}'.format(label)
if label == 'REAL':
label = 'DFDC_Real'
else:
label = 'DFDC_Fake'
frame_paths = [os.path.join(video_path, frame.name) for frame in os.scandir(video_path)]
dataset_dict[dataset_name][label]['train'][video_name] = {'label': label, 'frames': frame_paths}
dataset_dict[dataset_name][label]['val'][video_name] = {'label': label, 'frames': frame_paths}
## DeeperForensics-1.0 dataset
elif dataset_name == 'DeeperForensics-1.0':
with open(os.path.join(dataset_root_path, dataset_name, 'lists/splits/train.txt'), 'r') as f:
train_txt = f.readlines()
train_txt = [line.strip().split('.')[0] for line in train_txt]
with open(os.path.join(dataset_root_path, dataset_name, 'lists/splits/test.txt'), 'r') as f:
test_txt = f.readlines()
test_txt = [line.strip().split('.')[0] for line in test_txt]
with open(os.path.join(dataset_root_path, dataset_name, 'lists/splits/val.txt'), 'r') as f:
val_txt = f.readlines()
val_txt = [line.strip().split('.')[0] for line in val_txt]
dataset_path = os.path.join(dataset_root_path, dataset_name)
dataset_dict[dataset_name] = {'DF_real': {'train': {}, 'test': {}, 'val': {}},
'DF_fake': {'train': {}, 'test': {}, 'val': {}}}
if not Path(os.path.join(dataset_path, 'manipulated_videos', perturbation)).exists():
raise ValueError(f"wrong in processing perturbation {perturbation} in manipulated_videos")
print(f"processing perturbation {perturbation} in manipulated_videos")
for video_path in os.scandir(os.path.join(dataset_path, 'manipulated_videos', perturbation, 'frames')):
if video_path.is_dir():
video_name = video_path.name
if video_name in train_txt:
set_attr = 'train'
elif video_name in test_txt:
set_attr = 'test'
elif video_name in val_txt:
set_attr = 'val'
else:
raise ValueError(f"wrong in processing vidname {dataset_name}: {line}")
label = 'DF_fake'
frame_paths = [os.path.join(video_path, frame.name) for frame in os.scandir(video_path)]
## if frame image in frame_paths is not the correct png, skip this frame yxh
for frame_path in frame_paths:
if cv2.imread(frame_path) is None:
frame_paths.remove(frame_path)
dataset_dict[dataset_name][label][set_attr][video_name] = {'label': label, 'frames': frame_paths}
for actor_path in os.scandir(os.path.join(dataset_path, 'source_videos')):
print("actor",actor_path.name)
if not os.path.isdir(actor_path):
continue
label = 'DF_real'
video_paths = [os.path.join(actor_path, 'frames', video.name) for video in os.scandir(os.path.join(actor_path, 'frames'))]
for video_path in video_paths:
video_name = video_path.split('/')[-1]
frame_paths = [os.path.join(video_path, frame.name) for frame in os.scandir(video_path)]
## if frame image in frame_paths is not the correct png, skip this frame yxh
for frame_path in frame_paths:
if cv2.imread(frame_path) is None:
frame_paths.remove(frame_path)
dataset_dict[dataset_name][label]['train'][video_name] = {'label': label, 'frames': frame_paths}
dataset_dict[dataset_name][label]['test'][video_name] = {'label': label, 'frames': frame_paths}
dataset_dict[dataset_name][label]['val'][video_name] = {'label': label, 'frames': frame_paths}
## UADFV dataset
elif dataset_name == 'UADFV':
dataset_path = os.path.join(dataset_root_path, dataset_name)
dataset_dict[dataset_name] = {'UADFV_Real': {'train': {}, 'test': {}, 'val': {}},
'UADFV_Fake': {'train': {}, 'test': {}, 'val': {}}}
for folder in os.scandir(dataset_path):
if not os.path.isdir(folder):
continue
elif folder.name in ['fake']:
for video_path in os.scandir(os.path.join(dataset_path, folder.name, 'frames')):
if video_path.is_dir():
video_name = video_path.name
label = 'UADFV_Fake'
frame_paths = [os.path.join(video_path, frame.name) for frame in os.scandir(video_path)]
dataset_dict[dataset_name][label]['train'][video_name] = {'label': label, 'frames': frame_paths}
dataset_dict[dataset_name][label]['test'][video_name] = {'label': label, 'frames': frame_paths}
dataset_dict[dataset_name][label]['val'][video_name] = {'label': label, 'frames': frame_paths}
elif folder.name in ['real']:
for video_path in os.scandir(os.path.join(dataset_path, folder.name, 'frames')):
if video_path.is_dir():
video_name = video_path.name
label = 'UADFV_Real'
frame_paths = [os.path.join(video_path, frame.name) for frame in os.scandir(video_path)]
dataset_dict[dataset_name][label]['train'][video_name] = {'label': label, 'frames': frame_paths}
dataset_dict[dataset_name][label]['test'][video_name] = {'label': label, 'frames': frame_paths}
dataset_dict[dataset_name][label]['val'][video_name] = {'label': label, 'frames': frame_paths}
# Convert the dataset dictionary to JSON format and save to file
output_file_path = os.path.join(output_file_path, dataset_name + '.json')
with open(output_file_path, 'w') as f:
json.dump(dataset_dict, f)
# print the successfully generated dataset dictionary
print(f"{dataset_name}.json generated successfully.")
if __name__ == '__main__':
# from config.yaml load parameters
yaml_path = './config.yaml'
# open the yaml file
try:
with open(yaml_path, 'r') as f:
config = yaml.safe_load(f)
except yaml.parser.ParserError as e:
print("YAML file parsing error:", e)
dataset_name = config['rearrange']['dataset_name']['default']
dataset_root_path = config['rearrange']['dataset_root_path']['default']
output_file_path = config['rearrange']['output_file_path']['default']
comp = config['rearrange']['comp']['default']
perturbation = config['rearrange']['perturbation']['default']
# Call the generate_dataset_file function
generate_dataset_file(dataset_name, dataset_root_path, output_file_path, comp, perturbation)
|