Add dataset card, link to paper and code

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +52 -3
README.md CHANGED
@@ -1,3 +1,52 @@
1
- ---
2
- license: cc-by-nc-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ task_categories:
4
+ - object-detection
5
+ ---
6
+
7
+ # Boxer Dataset
8
+
9
+ This repository contains sample data for **Boxer: Robust Lifting of Open-World 2D Bounding Boxes to 3D**.
10
+
11
+ [Project Page](https://facebookresearch.github.io/boxer) | [Paper](https://huggingface.co/papers/2604.05212) | [GitHub](https://github.com/facebookresearch/boxer)
12
+
13
+ ## Introduction
14
+ Boxer is an algorithm designed to estimate static 3D bounding boxes (3DBBs) from 2D open-vocabulary object detections, posed images, and optional depth. This repository hosts sample data sequences used to demonstrate Boxer's ability to lift 2D detections into 3D world space.
15
+
16
+ ## Data Sources
17
+ The dataset provides sample sequences from several sources used in the paper:
18
+ * **Project Aria**: Sequences from Gen 1 & 2 (e.g., `hohen_gen1`, `nym10_gen1`, `cook0_gen2`).
19
+ * **CA-1M**: A sample validation sequence.
20
+ * **SUN-RGBD**: A subset of sample images.
21
+
22
+ ## Usage
23
+
24
+ ### Download Data
25
+ To download the sample data to your local machine, you can use the utility scripts provided in the [official GitHub repository](https://github.com/facebookresearch/boxer):
26
+
27
+ ```bash
28
+ # Download sample Aria sequences
29
+ bash scripts/download_aria_data.sh
30
+
31
+ # Download CA-1M sample
32
+ python scripts/download_ca1m_sample.py
33
+
34
+ # Download SUN-RGBD sample
35
+ python scripts/download_omni3d_sample.py
36
+ ```
37
+
38
+ ### Run Inference
39
+ Once the data and checkpoints are downloaded, you can run BoxerNet on a sequence (e.g., `nym10_gen1`):
40
+
41
+ ```bash
42
+ python run_boxer.py --input nym10_gen1 --max_n=90 --track
43
+ ```
44
+
45
+ ## Citation
46
+ ```bibtex
47
+ @article{boxer2026,
48
+ title={Boxer: Robust Lifting of Open-World 2D Bounding Boxes to 3D},
49
+ author={Daniel DeTone and Tianwei Shen and Fan Zhang and Lingni Ma and Julian Straub and Richard Newcombe and Jakob Engel},
50
+ year={2026},
51
+ }
52
+ ```