File size: 994 Bytes
382004b
 
 
 
 
 
 
 
 
 
 
 
 
 
945f317
e622f0e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
license: cc-by-nc-4.0
task_categories:
- robotics
language:
- en
tags:
- 3D
- EmbodyAI
size_categories:
- n<1K
configs:
- config_name: default
  data_files: simulation_assets_metadata.csv
  image_field: image_preview
---

🧪 LabUtopia-Dataset: Scientific Laboratory 3D Asset Library (OpenUSD)

LabUtopia-Dataset is a large-scale 3D asset library designed for simulating scientific laboratory environments.
It provides realistic lab scenes, scientific instruments, and environmental props, all stored in OpenUSD (.usd / .usdz) format for high interoperability and composability.

🧩 File Format: OpenUSD

Each asset is stored as a .usd or .usdz file.
You can load them directly in:

- NVIDIA Omniverse (Create, Isaac Sim)
- Blender (via USD Importer)
- Pixar USDView
- Unity / Unreal Engine (via USD plugin)

Example usage:
```
from pxr import Usd, UsdGeom

stage = Usd.Stage.Open("LabScene-Assets/instruments/microscope.usd")
for prim in stage.Traverse():
    print(prim.GetPath())
```