This eye tracking video database can be used to validate visual attention models. This dataset includes 72 videos downloaded from Internet and some synthetic videos generated in the lab. The videos can be classified in four categories, natural and synthetic, with fixed or movement camera. It includes 27 synthetic videos with dynamic pop-out effects. The videos have been selected in order to minimize the influence of the top-down efects.
Each video has been reescaled to a 320×240 resolution and the fixation information for all the subjects is refered to the same image space. X and Y are image's coordinates refered to the leftmost bottom corner, and both parameters Start and Duration are in ms. All the fixations have been saved in the CITIUS_VDB_Fixations file,CITIUS_VDB_Fixations, using matlab with the following structure:
EyeTrackVDB |-Video (List of Videos) → Name (Original video name) → ShortName (Used in publications) → NF (Number of frames) → FPS (Frames per second) → FixL (List of fixations for the left eye: [X,Y,Start,Duration]) → FixR (List of fixations for the right eye: [X,Y,Start,Duration]) → Frame (List of Frames) |-Time (Start time for each frame) |-FixL (List of left fixations that happened during this frame: [X,Y,Start,Duration]) |-FixR (List of right fixations that happened during this frame: [X,Y,Start,Duration])
In the following example we illustrate how to access to the XY coordinates of the left eye fixations in the seventh frame of the third video of the database:
>> load('EyeTrackVDB.mat');
>> disp(EyeTrackVDB.Video(3).Name);
RCD_HelicopterCar_2.avi
>> disp(EyeTrackVDB.Video(3).Frame(7).FixL(:,1:2));
184 125 229 156 178 140 95 136 95 108 229 174 ... ... 220 154 228 98 143 121
The MATLAB script “WEB_ShowVideoAndFixations.m” is another example that reads the MATLAB database file. This function shows all the fixations, for all the subjects, sumperimposed to the original video frames. It only needs the path of the database file and the name of the selected video. The stand alone database compressed file “CITIUS_VDB” includes all the folders with the needed information. The included MATLAB script assumes the following folder structure:
For example, to use this script to show the video “RCD_Surf_2.avi” with the fixations superimposed you should open matlab, change to the Scripts folder and type the following sentence at the command line. If you change, inside the code, the value of the boolean variable bVisFixPOS, you can see the fixation positions superimposed or not.
>> WEB_ShowVideoAndFixations('..\DataBases\CITIUS\HumanData\eyeTrackData\EyeTrackVDB.mat','RCD_Surf_2');
or, if you want to show all the videos of the CITIUS database, in a new MATLAB figure, you can type:
>> WEB_ShowVideoAndFixations('..\DataBases\CITIUS\HumanData\eyeTrackData\EyeTrackVDB.mat',[]);
You can also use filters, for instance to show all the videos that contain the string 'RCD' in the name use:
>> WEB_ShowVideoAndFixations('..\DataBases\CITIUS\HumanData\eyeTrackData\EyeTrackVDB.mat','RCD');
If you only want to download the videos you can do it by clicking on the download icons of the previous section. If you have a fast enough internet connection and you prefer to download a stand alone file, with all the information and folder structure included inside, you can download by clicking on this link:
You can also download this database using git repository:
The database, along with MATLAB functions for its use, will be freely downloaded here, and will be used without restriction for educational and research purposes, providing that our paper “Dynamic Whitening Saliency” from IEEE Transactions on Pattern Analysis and Machine Intelligence ( t-PAMI), is cited in any published work.
@article{10.1109/TPAMI.2016.2567391, author = {Leborán Alvarez, Víctor and García-Díaz, Antón and Fdez-Vidal, Xosé R. and Pardo, Xosé M.}, title = {Dynamic Whitening Saliency}, journal ={IEEE Transactions on Pattern Analysis and Machine Intelligence}, volume = {39}, number = {5}, issn = {0162-8828}, year = {2017}, pages = {893-907}, doi = {http://doi.ieeecomputersociety.org/10.1109/TPAMI.2016.2567391}, publisher = {IEEE Computer Society}, address = {Los Alamitos, CA, USA}, }
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License. This information is under the license Creative Commons Reconocimiento-Compartir Igual 4.0 Internacional>. You can use this dataset on your publication as long as you include a citation to the reference on this page. When including a link to this dataset, please use this page instead of linking the file directly.