--- license: cc-by-4.0 pretty_name: SBD QR Subset (low resolution) — barcode ROIs with instance masks task_categories: - image-segmentation - object-detection tags: - qr-code - barcode - instance-segmentation - synthetic size_categories: - 10K.png` ↔ `img_` in `all_bboxes.json`) | ### The box↔mask alignment was verified, not assumed `boxes[k]` and `instance_masks[k]` are the same object. The packer checked the count of boxes against the count of instance-mask files for **every one of the 100,000 ROIs and found zero mismatches**, and no ROI was missing its combined mask. If they had disagreed, the join would have been silently wrong in a way no loader would flag — so it is checked rather than trusted. ## Usage ```python from datasets import load_dataset ds = load_dataset("devmandan/sbd-qr-subset", split="train", streaming=True) row = next(iter(ds)) row["image"], row["mask"], row["instance_masks"][0], row["boxes"][0] # crowded ROIs full = load_dataset("devmandan/sbd-qr-subset", split="test") crowded = full.filter(lambda r: r["n_instances"] >= 8) ``` `streaming=True` is worth using here — the train split is ~3 GB. ## Scope, stated plainly This mirror carries the **`low_resolution` ROI split only**. The upstream SBD release also has ultra-high-resolution splits and full-scene imagery that are **not** included here. Do not describe results on this mirror as results on SBD. It is also a **barcode** dataset covering multiple symbologies, not a QR-only one; it appears in a QR collection for its scale and its instance masks. ## Citation ```bibtex @misc{sbd_synthetic_barcode_dataset, title = {Synthetic Barcode Dataset (SBD)}, author = {Quenum, Jerome and Wang, Kehan and Zakhor, Avideh}, note = {Synthetic barcode detection and segmentation dataset} } ``` Licence: **CC BY 4.0** as recorded in the dataset registry (the authors' code repository is separately MIT). Attribute the authors above, not this mirror.