--- 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. ## Pose convention This release (v1.0 and v1.1) ships 6D poses in **OpenGL/Blender camera convention** (camera looks down `-Z`, in-front objects have `cam_t_m2c.z < 0`) rather than the BOP-standard **OpenCV convention** (camera looks down `+Z`, in-front objects have `cam_t_m2c.z > 0`). The two differ by the basis change `diag(1, -1, -1)` applied to the camera frame. **Anyone scoring against bop_toolkit_lib, MegaPose, FoundationPose, CosyPose, or any OpenCV-convention model must apply `diag(1, -1, -1)` to the GT `cam_R_m2c` and `cam_t_m2c` from `scene_gt.json` before evaluation**, otherwise pose errors blow up to the order of the object diameter (~150 mm) and any AR comparison is meaningless. ZereData's evaluation harness exposes this via the `--legacy-gl-convention` flag on `eval.scorer.BopScorer`, `eval.adapter.gt_as_predictions`, and the eval CLIs (`gt_sanity`, `run_megapose_eval`, `rescore`, `_perturb_probe`, `rescore_h1`). Pass it when scoring v1.0 or v1.1; omit it for v1.2 onward, which ships in OpenCV convention at the producer (see [zrdt-269](https://github.com/umitkavala/zere-synth/commit/018b959) for the producer-side fix). This deviation was identified post-publication. v1.0 and v1.1 remain available unchanged on HuggingFace for reproducibility; **v1.2 supersedes them for new integrations** and ships BOP-spec compliant out of the box. The legacy flag is supported indefinitely so downstream code that already ingests v1.0/v1.1 keeps working. RGB, depth, masks, COCO 2D boxes, and YOLO labels are **unaffected** — only the 6D pose serialisation deviates from the BOP spec. ## Limitations and Known Issues - **BOP pose convention deviation.** Object pose extrinsics in `scene_gt.json` ship in OpenGL convention, not BOP-spec OpenCV. See the **Pose convention** section above for the basis change and the `--legacy-gl-convention` flag. v1.2 supersedes this with a producer-side fix. - **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)