--- license: cc-by-sa-3.0 language: - en tags: - depth - 3d - vlm - scene-understanding - hypersim pretty_name: Hypersim · §6 depth format (tarred per scene) size_categories: - 10K int: return len(self.imgs) def __getitem__(self, i: int): rgb = np.asarray(Image.open(self.imgs[i]).convert("RGB")) return { "rgb": torch.from_numpy(rgb), "depth": torch.from_numpy(self.depth[i].copy()), "K": torch.from_numpy(self.K[i].copy()), "w2c": torch.from_numpy(self.E[i].copy()), "valid": torch.from_numpy(self.V[i].copy()), } ``` --- ## Source & citation - Repo: https://github.com/apple/ml-hypersim - Paper: Roberts et al., *Hypersim: A Photorealistic Synthetic Dataset for Holistic Indoor Scene Understanding*, ICCV 2021. - License: CC BY-SA 3.0 (Apple Inc.). Derivatives (this dataset included) inherit the share-alike clause. Conversion pipeline lives in the 3DVLM project repo (`scripts/convert_hypersim.py`). Format spec: `progress/s1_plan_data.md §6`.