Screen2AX
Collection
8 items β’ Updated
image imagewidth (px) 500 3.6k | accessibility stringlengths 764 1.49M |
|---|---|
{"name": "lek", "role": "AXWindow", "description": null, "role_description": "standard window", "value": null, "position": "152.00;38.00", "size": "1500;994", "children": [{"name": null, "role": "AXGroup", "description": "lek", "role_description": "group", "value": null, "position": "0.00;28.00", "size": "1500;966", "c... | |
{"name": "General", "role": "AXWindow", "description": null, "role_description": "standard window", "value": null, "position": "306.00;256.00", "size": "480;576", "children": [{"name": null, "role": "AXGroup", "description": null, "role_description": "group", "value": null, "position": "0.00;0.00", "size": "480;576", "... | |
{"name": "MoneyWiz", "role": "AXWindow", "description": null, "role_description": "standard window", "value": null, "position": "292.00;66.00", "size": "1024;768", "children": [{"name": null, "role": "AXGroup", "description": null, "role_description": "group", "value": null, "position": "0.00;0.00", "size": "1024;768",... | |
{"name": "Cubox", "role": "AXWindow", "description": null, "role_description": "standard window", "value": null, "position": "351.00;95.00", "size": "1024;768", "children": [{"name": null, "role": "AXGroup", "description": null, "role_description": "group", "value": null, "position": "0.00;0.00", "size": "1024;768", "c... | |
{"name": "[name]", "role": "AXWindow", "description": null, "role_description": "standard window", "value": null, "position": "284.00;55.00", "size": "1379;929", "children": [{"name": "", "role": "AXMenuButton", "description": null, "role_description": "menu button", "value": null, "position": "8.00;901.00", "size": "2... | |
{"name": "test_\u2014_testUITestsLaunchTests.swift", "role": "AXWindow", "description": null, "role_description": "standard window", "value": null, "position": "164.00;127.00", "size": "1400;900", "children": [{"name": "test.xcodeproj", "role": "AXSplitGroup", "description": "/Users/[username]/Code/test/test/test.xcode... | |
{"name": "Swish", "role": "AXWindow", "description": null, "role_description": "standard window", "value": null, "position": "352.00;73.00", "size": "807;699", "children": [{"name": null, "role": "AXSplitGroup", "description": null, "role_description": "split group", "value": null, "position": "0.00;0.00", "size": "807... | |
"{\"name\": \"Anki_Note\", \"role\": \"AXWindow\", \"description\": null, \"role_description\": \"st(...TRUNCATED) | |
"{\"name\": \"Session_Pomodoro_Focus_Timer\", \"role\": \"AXWindow\", \"description\": null, \"role_(...TRUNCATED) | |
"{\"name\": \"Untitled_Notebook\", \"role\": \"AXWindow\", \"description\": null, \"role_description(...TRUNCATED) |
Screen2AX-Tree is part of the Screen2AX dataset suite, a research-driven collection for advancing accessibility in macOS applications using computer vision and deep learning.
This dataset provides hierarchical accessibility annotations of macOS application screenshots, structured as serialized trees. It is designed for training models that reconstruct accessibility hierarchies from visual input.
Each sample in the dataset consists of:
image)accessibility): A JSON-formatted string representing the UI structure, including roles, bounds, and child relationships.Task Category:
object-detection (structured / hierarchical)Language:
en)datasets library
from datasets import load_dataset
dataset = load_dataset("macpaw-research/Screen2AX-Tree")
sample = dataset["train"][0]
print(sample.keys())
# dict_keys(['image', 'accessibility'])
print(sample["accessibility"])
# '{ "role": "AXWindow", "children": [ ... ] }'
You can parse the accessibility field as JSON to work with the structured hierarchy:
import json
tree = json.loads(sample["accessibility"])
This dataset is licensed under the Apache 2.0 License.
If you use this dataset, please cite the Screen2AX paper:
@misc{muryn2025screen2axvisionbasedapproachautomatic,
title={Screen2AX: Vision-Based Approach for Automatic macOS Accessibility Generation},
author={Viktor Muryn and Marta Sumyk and Mariya Hirna and Sofiya Garkot and Maksym Shamrai},
year={2025},
eprint={2507.16704},
archivePrefix={arXiv},
primaryClass={cs.LG},
url={https://arxiv.org/abs/2507.16704},
}
Learn more at https://research.macpaw.com