Datasets:
Something's Missing Here
A dataset of viewpoint-aligned before/after image pairs for training and evaluating missing-object detection: each pair shows the same scene from (nearly) the same viewpoint, once with one or more objects present and once after they were removed, with a label naming what went missing.
The dataset originated from pairs derived from the
simkoc/Remove360 dataset
(training/Remove360_based/), extended with original photographs collected
by the dataset author (training/DeTaken/), plus a held-out test/ split of
scenes that appear nowhere in training.
Structure
training/
βββ DeTaken/ original photographs by the dataset author
β βββ <scene>/ boxes, cabinet_window, magnets, red_stool, ...
β βββ pair_<nn>/
β βββ before.jpg earlier image
β βββ after.jpg later image
β βββ label.json {"missing": true, "items": ["<removed object>"]}
β or {"missing": false, "items": []} for no-change pairs
βββ Remove360_based/ pairs derived from Remove360 (see below)
βββ <scene>/ backyard, bedroom, living-room, office, park, stairwell
βββ pair_<nn>/ same pair layout
test/
βββ test_<scene>/ held-out scenes, one pair each, never in training
βββ pair_01/ same pair layout
Overview:
| split | collection | scenes | pairs | positive | negative |
|---|---|---|---|---|---|
| training | DeTaken | 13 | 87 | 50 | 37 |
| training | Remove360_based | 6 | 146 | 124 | 22 |
| test | β | 7 | 7 | 7 | 0 |
Remove360-derived negative (no-change) pairs additionally carry a source
field in label.json documenting which images they were built from.
In Remove360_based/ pairs, before.jpg is warped into after.jpg's
camera frame and both images are cropped to their shared valid region, so
the two images are pixel-aligned with identical dimensions. DeTaken/ and
test/ pairs are handheld re-shots from approximately the same viewpoint
and are not pixel-aligned.
The Remove360_based subset
Remove360 provides separate pre-removal and post-removal camera walks of real indoor and outdoor scenes. Its before and after images are independent captures β they are not pixel-aligned pairs β so this subset was built by finding and aligning the closest matching viewpoints between the two walks.
146 pairs β 124 positives (something was removed) and 22 negatives (nothing changed) β across 6 scenes and 9 removed objects:
| scene | positive | negative | removed object | pairs | |
|---|---|---|---|---|---|
| backyard | 53 | 7 | chairs | 36 | |
| stairwell | 24 | 7 | backpack | 24 | |
| living-room | 21 | 5 | stroller | 16 | |
| office | 13 | 1 | sofa | 15 | |
| park | 10 | 2 | deckchair | 11 | |
| bedroom | 3 | 0 | bicycle | 10 | |
| pillows | 6 | ||||
| table | 3 | ||||
| toy-truck | 3 |
How it was generated
- Download β the full
simkoc/Remove360repository (file tree of<scene>/<object>/train|test|masks), wheretrain/holds pre-removal ("before") images andtest/holds post-removal ("after") images. - Valid-region cropping β a subset of Remove360's images is truncated
at fixed byte boundaries on the Hub itself (all of
backyard/strollerat 2.75 MiB, all ofbackyard/playhouseat 256 KiB); truncated JPEGs decode with a uniform gray tail. Each image was cropped to its real content before matching, and images with less than 15% real content were discarded. - Viewpoint matching β every after image was ranked against all before images of the same object by SIFT feature matches (Lowe ratio 0.75); the top 3 candidates were verified with a RANSAC homography (reprojection threshold 4 px, minimum 40 inliers).
- Acceptance criteria β a pair was kept only if each frame covers at least 85% of the other under the homography (mutual frame coverage) and the warped before image correlates with the after image at β₯ 0.475 zero-mean normalized correlation. Each before image was used in at most one pair.
- Alignment and cropping β the accepted before image was warped into the after frame at full resolution and both images were cropped to the largest rectangle of shared valid pixels.
- Labeling β each pair's
label.jsonrecords the removed object (the Remove360 object folder the pair came from) as{"missing": true, "items": ["<object>"]}. - Manual curation β the automatically accepted pairs were reviewed and some were deleted by hand; the remaining pairs were renumbered contiguously.
- No-change negatives β within one scene, the before images of two
different pairs that share the same removed-item label come from the same
pre-removal camera walk (the item is present in both), and likewise the
after images from the same post-removal walk (absent in both). Such
same-side image pairs were matched and aligned with the same gates as the
positives β with mutual frame coverage additionally capped at 96% so
overlap statistics cannot separate the classes β and saved as
{"missing": false}pairs.
Known limitations
- No
playhousepairs β all of Remove360'sbackyard/playhouseimages are truncated to ~6% of their content on the Hub, which is below the usability floor. - Stroller pairs are half-height β
backyard/strollerimages are truncated to roughly their top half, so its pairs are wide bands (3900Γ1000) rather than full frames (4000Γ2200). - Residual parallax β alignment uses a single homography per pair; small parallax between the two camera positions can remain, especially on close foreground geometry.
- Some objects other than the labeled one may have shifted slightly between Remove360's two capture sessions.
License and attribution
The Remove360_based/ subset is a derivative of
simkoc/Remove360 and is
distributed under the same CC-BY-NC-4.0 license, which this dataset
adopts as a whole. If you use it, please also cite the original Remove360
paper (arXiv:2508.11431).
- Downloads last month
- 32