Dataset Viewer
Auto-converted to Parquet Duplicate
Search is not available for this dataset
image
imagewidth (px)
960
960
label
class label
27 classes
0polygon_01
0polygon_01
0polygon_01
0polygon_01
0polygon_01
0polygon_01
0polygon_01
0polygon_01
1polygon_02
1polygon_02
1polygon_02
1polygon_02
1polygon_02
1polygon_02
1polygon_02
2polygon_03
2polygon_03
2polygon_03
2polygon_03
2polygon_03
2polygon_03
2polygon_03
3polygon_04
3polygon_04
3polygon_04
3polygon_04
3polygon_04
3polygon_04
4polygon_05
4polygon_05
4polygon_05
4polygon_05
4polygon_05
5polygon_06
5polygon_06
5polygon_06
5polygon_06
5polygon_06
6polygon_07
6polygon_07
6polygon_07
6polygon_07
7polygon_08
7polygon_08
7polygon_08
7polygon_08
8polygon_09
8polygon_09
8polygon_09
9polygon_10
9polygon_10
9polygon_10
9polygon_10
10polygon_11
10polygon_11
10polygon_11
10polygon_11
10polygon_11
10polygon_11
11polygon_12
11polygon_12
11polygon_12
11polygon_12
12polygon_13
12polygon_13
12polygon_13
12polygon_13
13polygon_14
13polygon_14
13polygon_14
13polygon_14
13polygon_14
13polygon_14
14polygon_15
14polygon_15
14polygon_15
14polygon_15
14polygon_15
14polygon_15
15polygon_16
15polygon_16
15polygon_16
15polygon_16
16polygon_17
16polygon_17
16polygon_17
16polygon_17
16polygon_17
16polygon_17
17polygon_18
17polygon_18
17polygon_18
17polygon_18
17polygon_18
18polygon_19
18polygon_19
18polygon_19
18polygon_19
18polygon_19
19polygon_20
End of preview. Expand in Data Studio

PolyCAT: Polygon-Aperture Eye-Tracking Dataset

PolyCAT is a public eye-tracking dataset for studying visual attention on natural images viewed through irregular polygon apertures. The dataset is designed to support saliency prediction, gaze modeling, and research on how geometric viewing constraints affect visual exploration strategies.

Recording Details

  • Eye tracker: EyeLink 1000+ (SR Research), head-mounted, binocular, 500 Hz per eye
  • Display: 27" 4K monitor (3840 x 2160 pixels) at 144 Hz
  • Viewing distance: 70 cm
  • Participants: 30 included (ages 24-29, 14 female / 16 male)
  • Stimuli: 600 images from CAT2000 (6 categories) viewed through 27 polygon aperture shapes
  • Trials per participant: 702 (351 per part x 2 parts)
  • Stimulus duration: 4.0 seconds per trial
  • Secondary task: Old/new memory probe after each block

Folder Overview

PolyCAT/
β”œβ”€β”€ data/
β”‚   β”œβ”€β”€ metadata/          # Consolidated tables: participants, sessions, trials, quality
β”‚   β”œβ”€β”€ gaze/              # Sample-level gaze streams (TSV, one per session)
β”‚   β”œβ”€β”€ fixations/         # Fixation events (CSV, global + per-participant)
β”‚   β”œβ”€β”€ saliency_maps/     # Empirical fixation density maps per polygon-image
β”‚   β”œβ”€β”€ scanpaths/         # Per-trial fixation sequences
β”‚   └── stimuli/           # CAT2000 images and polygon definitions (JSON)
β”œβ”€β”€ code/
β”‚   └── examples/          # Quickstart scripts and notebooks
β”œβ”€β”€ manifests/             # Stimulus manifest, polygon geometry
└── docs/                  # Data dictionary, file formats, acquisition protocol

Getting Started

import pandas as pd

# Load metadata
participants = pd.read_csv("data/metadata/participants.csv")
trials = pd.read_csv("data/metadata/trials.csv")
fixations = pd.read_csv("data/fixations/fixations_all.csv")

# Filter to one participant
p01_fix = fixations[fixations["participant_id"] == "P01"]
print(f"P01 has {len(p01_fix)} fixations across {p01_fix['trial_uid'].nunique()} trials")

# Fixation heatmap for a specific polygon-image combination
import numpy as np
polygon = "polygon_25"
subset = fixations[(fixations["polygon_id"] == polygon) & (fixations["eye"] == "R")]
heatmap = np.zeros((2160, 3840))
for _, row in subset.iterrows():
    x, y = int(row["x_px"]), int(row["y_px"])
    if 0 <= x < 3840 and 0 <= y < 2160:
        heatmap[y, x] += 1

Polygon Apertures

The 27 polygon shapes are organized into three groups:

  • Reference (3): regular geometric shapes (rectangle, symmetric, asymmetric)
  • Convexity-varied (3): shapes with varying convexity (convex, concave, intermediate)
  • Irregular (21): asymmetric polygons with diverse geometric properties

Citation

If you use this dataset, please cite:

@inproceedings{polycat2026,
  title     = {How Do We Look at Images Through Polygonal Apertures: The PolyCAT Dataset},
  author    = {Aklilu, Brahan and Ben-Shahar, Ohad},
  booktitle = {Proceedings of the 2026 ACM Symposium on Eye Tracking Research \& Applications (ETRA '26)},
  year      = {2026},
  doi       = {TBD}
}

License

This dataset is released under the Creative Commons Attribution 4.0 International License (CC BY 4.0).

Downloads last month
6,199