-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathload_vars.m
55 lines (41 loc) · 2.44 KB
/
load_vars.m
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
% This script loads dataset variables and establishes a few commonly used
% variables. The user is encouraged to modify this file to suit your needs.
% Add the reports sub-directory to the MATLAB executable search path
addpath('.\reports\');
% Variable points to a directory where features are stored.
base_dir = '\\itsvideo\Gold\new_features';
% load the Image Quality Analysis (IQA) datsets with camera impairments
load iqa_camera.mat
% Establish a variable that lists IQA datasets with camera impairments
% koniq10k_dataset excluded due to atypical MOS behavior
iqa_cam_ds = [ bid_dataset ccriq_dataset cid2013_dataset cv_dataset ...
its4s2_dataset itsnoise_dataset livewild_dataset mui2018_dataset ];
% load the Video Quality Analysis (VQA) datsets with camera impairments
load vqa_camera.mat;
% Establish a variable that lists all VQA datasets with camera impairments
vqa_cam_ds = [its4s3_dataset its4s4_dataset konvid1k_dataset konvid150kb_dataset ];
% load the Video Quality Analysis (VQA) datsets with broadcast impairments
load vqa_broadcast.mat;
% Establish a variable that lists all VQA datasets with broadcast
% impairments (e.g., more compression artifacts, less camera impairments)
%
% Most people will need to replace 'vqegHDcuts_dataset' and 'vqegHD_dataset'
% with 'vqegHDcutspublic_dataset' and 'vqegHDpublic_dataset'
% These variables contain videos that are only available to organizations
% who were involved in the VQEG HD tests. The extra videos cannot be distributed.
vqa_bc_ds = [its4s_dataset and_dataset vqegHDcuts_dataset vqegHD_dataset youkuv1k_dataset];
% Load the simulated datasets. This is either the full VCRDCI dataset in
% variable vcrdci_all_dataset, or the VCRDCI dataset in three pieces
load simulated.mat
% Establish a variable that lists all three VCRDCI dataset variables.
[sim_ds] = [vcrdci1_dataset vcrdci2_dataset vcrdci3_dataset];
% Load computer vision datasets. Calaster_dataset (AP and AR version).
% The DIQA datasets (unavailable). COCRID dataset.
load cv.mat
% Establish a variable that lists the computer vision dataset;
% diqaO_dataset, diqaF_dataset, and diqaT_dataset excluded because these
% are not generally available. calasterMA_dataset and calasterLA_dataset are
% excluded because they are only available to demonstrate the problems when a
% computer vision dataset contains content where the algorithm is likely to
% fail on high quality images (a confounding factor).
cv_ds = [ calaster_dataset cocrid_dataset ];