Seek to Segment: Active Perception for Panoramic Referring Segmentation
Paper • 2607.02497 • Published
image imagewidth (px) 854 3.84k | label class label 0
classes |
|---|---|
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null | |
null |
APRS (Active Panoramic Referring Segmentation) is a large-scale benchmark dataset for active perception in 360° panoramic environments. Unlike passive referring segmentation that processes static images, APRS requires agents to actively explore continuous panoramic scenes by adjusting viewing directions to seek and segment targets based on natural language instructions.
Each sample contains:
Filename: Image filename (panoramic view)Img_W, Img_H, Aspect_Ratio: Image dimensions and aspect ratioPt_X, Pt_Y: Target point pixel coordinatesPt_X_Norm, Pt_Y_Norm: Normalized point coordinates [0, 1]Box_X, Box_Y, Box_W, Box_H: Bounding box (x, y, width, height) in pixelsBox_X_Norm, Box_Y_Norm, Box_W_Norm, Box_H_Norm: Normalized bounding box [0, 1]Pt_Theta, Pt_Phi: Target point spherical coordinates (degrees)Box_Theta, Box_Phi: Bounding box center spherical coordinates (degrees)Description: Natural language referring expressionCategory: Spatial reference typeEGO: Egocentric (first-person directional)ALLO: Allocentric (third-person spatial relations)UNIQ: Unique attributesMULT: Multi-hop reasoningfrom aprs import APRSDataset
# Load directly from HuggingFace Hub
dataset = APRSDataset.from_hub(repo_id="FudanCVL/APRS_dataset", split="train")
# Access samples
sample = dataset[0]
print(f"Instruction: {sample.instruction}")
print(f"Category: {sample.category}")
print(f"Initial view: θ={sample.init_theta:.1f}°, φ={sample.init_phi:.1f}°")
print(f"Target view: θ={sample.target_theta:.1f}°, φ={sample.target_phi:.1f}°")
# Load panoramic image (BGR numpy array)
image = sample.load_image()
# Get bounding box
box_pixels = sample.box_pixels() # (x, y, w, h) in pixels
# Clone the official repository
git clone https://github.com/FudanCVL/APRS.git
cd APRS
# Install dependencies
pip install -e ".[viewer]"
# Launch interactive viewer directly from HuggingFace
python tools/viewer_360.py --hf --split test --index 0
# Or download dataset and view locally
python tools/viewer_360.py --root APRS_dataset --split test --index 0
Viewer Controls:
If you use this dataset, please cite:
@article{tang2026seek,
title={Seek to Segment: Active Perception for Panoramic Referring Segmentation},
author={Tang, Song and Hu, Shuming and Shuai, Xincheng and Ding, Henghui and Jiang, Yu-Gang},
journal={arXiv preprint arXiv:2607.02497},
year={2026}
}
This dataset is released under the MIT License.