Ruinwalker commited on
Commit
e622f0e
·
verified ·
1 Parent(s): 945f317

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -1
README.md CHANGED
@@ -13,4 +13,28 @@ configs:
13
  - config_name: default
14
  data_files: simulation_assets_metadata.csv
15
  image_field: image_preview
16
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  - config_name: default
14
  data_files: simulation_assets_metadata.csv
15
  image_field: image_preview
16
+ ---
17
+
18
+ 🧪 LabUtopia-Dataset: Scientific Laboratory 3D Asset Library (OpenUSD)
19
+
20
+ LabUtopia-Dataset is a large-scale 3D asset library designed for simulating scientific laboratory environments.
21
+ It provides realistic lab scenes, scientific instruments, and environmental props, all stored in OpenUSD (.usd / .usdz) format for high interoperability and composability.
22
+
23
+ 🧩 File Format: OpenUSD
24
+
25
+ Each asset is stored as a .usd or .usdz file.
26
+ You can load them directly in:
27
+
28
+ - NVIDIA Omniverse (Create, Isaac Sim)
29
+ - Blender (via USD Importer)
30
+ - Pixar USDView
31
+ - Unity / Unreal Engine (via USD plugin)
32
+
33
+ Example usage:
34
+ ```
35
+ from pxr import Usd, UsdGeom
36
+
37
+ stage = Usd.Stage.Open("LabScene-Assets/instruments/microscope.usd")
38
+ for prim in stage.Traverse():
39
+ print(prim.GetPath())
40
+ ```