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. A separate challenging/ split
holds harder cases β object swaps, replacements, and rearrangements β where
telling "something is missing" apart from "things merely changed" takes
more than spotting a difference (see below).
Structure
Both splits are organized by collection, then scene, then pair:
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_big_tree, backyard_bricks, backyard_toys,
βββ pair_<nn>/ bedroom, living-room, office, park, stairwell
test/
βββ DeTaken/ held-out scenes, never in training
β βββ test_<scene>/ test_broom, test_chair, ... (one pair each;
β βββ pair_<nn>/ test_michal_01: 15 pairs, test_shay_01: 11)
βββ Remove360_based/
βββ test_backyard/ 3 held-out Remove360 pairs
challenging/ harder cases: swaps, replacements, rearrangements
βββ training/
β βββ <scene>/ same scene names as training/DeTaken
β βββ pair_<nn>/
βββ test/
βββ pair_<nn>/ held-out challenging pairs (flat)
Overview:
| split | collection | scenes | pairs | positive | negative |
|---|---|---|---|---|---|
| training | DeTaken | 16 | 61 | 51 | 10 |
| training | Remove360_based | 8 | 143 | 121 | 22 |
| test | DeTaken | 10 | 34 | 32 | 2 |
| test | Remove360_based | 1 | 3 | 3 | 0 |
| challenging | training | 17 | 81 | 27 | 54 |
| challenging | test | 1 | 11 | 5 | 6 |
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 (both splits), 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 challenging/ pairs are handheld re-shots from approximately
the same viewpoint and are not pixel-aligned.
The challenging split
challenging/ holds the deliberately hard cases, separated from the main
splits so models can be trained and evaluated with or without them. In the
main splits, the change between before and after is a clean object
removal (or nothing at all) seen under a small viewpoint change. In
challenging/, other things happen too β objects are swapped with one
another, replaced by different objects, or rearranged within the
scene:
- Its negatives (
missing: false, the majority here) are hard: items moved, swapped, or substituted β the scene visibly changed, yet nothing went missing. A model leaning on "the images differ, so something is gone" fails these. - Its positives (
missing: true) hide a genuine removal among such distractions, so spotting the difference is not enough β the model must identify that the change is specifically a disappearance.
Labels use the same label.json format. challenging/test/ pairs are held
out from all training and sit directly under the folder (no scene
subfolders).
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 9 scenes and 9 removed objects. Remove360's single large
backyard scene is split into three sub-scenes by area (big tree lawn, brick
patio, toy corner), and 3 backyard pairs are held out as test/
Remove360_based/test_backyard:
| scene | positive | negative | removed object | pairs | |
|---|---|---|---|---|---|
| backyard_toys | 23 | 5 | chairs | 36 | |
| backyard_bricks | 16 | 0 | backpack | 24 | |
| backyard_big_tree | 11 | 2 | stroller | 16 | |
| stairwell | 24 | 7 | sofa | 15 | |
| living-room | 21 | 5 | deckchair | 11 | |
| office | 13 | 1 | bicycle | 10 | |
| park | 10 | 2 | pillows | 6 | |
| bedroom | 3 | 0 | table | 3 | |
| test_backyard (test) | 3 | 0 | 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
- 105