--- pretty_name: ZereData Bin Picking Dataset v1.1 license: cc-by-4.0 task_categories: - object-detection - image-segmentation size_categories: - 10K/... (extract bin_picking__bop.zip there first) self.scene_dirs = sorted((Path(root) / 'data' / split).iterdir()) def __len__(self): return len(self.scene_dirs) def __getitem__(self, idx): sd = self.scene_dirs[idx] rgb = Image.open(sd / 'rgb' / '000000.png') gt = json.loads((sd / 'scene_gt.json').read_text()) cam = json.loads((sd / 'scene_camera.json').read_text()) return rgb, gt, cam ``` ### COCO via pycocotools ```python # After extracting bin_picking_coco.zip: from pycocotools.coco import COCO coco = COCO('annotations/coco_train.json') img_ids = coco.getImgIds() for ann in coco.loadAnns(coco.getAnnIds(imgIds=img_ids[0])): print(ann['bbox'], ann['category_id']) ``` _A `datasets.load_dataset()` loader is planned for v1.1._ ## Intended Use Training 6D pose estimation models, bin-picking grasp models, and warehouse robotics perception systems. Synthetic data for sim-to-real transfer research. ## Limitations and Known Issues - **BOP coordinate convention.** Object pose extrinsics in `scene_gt.json` are exported in OpenGL convention (negative-Z forward) rather than the BOP-standard OpenCV convention (positive-Z forward). Downstream consumers should apply a `diag(1, -1, -1)` transform when scoring against BOP toolkit baselines. A v1.x patch release with the producer-side fix is in progress. - **Warehouse-specific lighting.** The three lighting profiles model warehouse conditions and may not transfer directly to outdoor, medical, or agricultural domains: - `bin_picking_overhead` — bright fluorescent overhead panels, typical of distribution-center shelving aisles. - `bin_picking_mixed` — mixed overhead + rim lighting with warmer colour temperature, mimicking older facilities with partial skylights. - `studio` — three-point studio lighting setup shared across ZereData scenarios; in bin-picking scenes, produces low-light conditions with deep shadows. Each scene's `variety.lighting_profile` annotation tag records which profile was used. - **Procedural materials.** Material variation uses procedural textures, not photoscanned assets. High-frequency surface detail may look synthetic under close inspection. - **Geometric occlusion only.** No category-level occlusion modelling — occlusion is derived from geometry alone. - **Simulated camera intrinsics.** The intrinsic matrix is synthetic, not drawn from real sensor calibration. ## Evaluation Benchmark evaluation on LM-O is forthcoming; see [ZereData](https://zeredata.com) for updates. ## Comparison to Related Datasets HOPE, T-LESS, and YCB-Video are excellent real-world datasets with limited scale and fixed object sets. This dataset is synthetic-only, scales without bound, and supports customer-specific object libraries. Treat the two as complementary: real data for evaluation, synthetic data for training. ## Custom Datasets This release is a research dataset. The categories (bottle, box, can, pouch), SKU shapes, and bin geometry are intentionally generic — useful for benchmarking, pretraining, and sanity-checking a 6D pose pipeline before you invest in real-world data collection. For production use, ZereData generates the same kind of dataset matched to your warehouse's actual SKUs and bin geometry. Customer-specific datasets ingest CAD files or reference photos, render at the same scale and quality as this release, and ship in days. Pricing is per-dataset, with design-partner terms for early customers. If you're training bin-picking models for a specific picking environment, email **engineering@zeredata.com** — design partners welcome. ## Citation ```bibtex @dataset{zeredata_binpicking_2026, author = {Umit Kavala}, title = {ZereData Bin Picking Dataset v1.1}, year = {2026}, publisher = {HuggingFace}, url = {https://huggingface.co/datasets/zeredata/bin-picking} } ``` ## License Released under [CC BY 4.0](LICENSE). Attribution required. Commercial use permitted. ## Contact and Links - Website: [https://zeredata.com](https://zeredata.com) - Contact: [engineering@zeredata.com](mailto:engineering@zeredata.com)