File size: 5,062 Bytes
b28757e 6ffb8f9 b28757e 957bc95 b28757e 957bc95 b28757e 957bc95 1561e7d b28757e 6ffb8f9 b28757e |
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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 |
---
viewer: false
license: other
license_name: interioragent-terms-of-use
license_link: >-
https://kloudsim-usa-cos.kujiale.com/InteriorAgent/InteriorAgent_Terms_of_Use.pdf
---
# InteriorAgent: Interactive USD Interior Scenes for Isaac Sim-based Simulation
**InteriorAgent** is a collection of high-quality 3D USD assets specifically designed for indoor simulation in NVIDIA Isaac Sim environments. Each asset is structured with modular materials, scene description files, and physics-ready geometry, enabling fast integration for embodied AI and robotics tasks such as navigation, manipulation, and layout understanding.
<div align="center">
<img src="https://kloudsim-usa-cos.kujiale.com/InteriorAgent/texture1.png" alt="InteriorAgent scene" width="80%"/>
<p>A sample scene from the InteriorAgent dataset rendered in Isaac Sim. The scene features high-quality 3D assets such as sofas, cushions, tables, and chandeliers, all modeled with real-world scale. The bottom panel shows loaded asset files (e.g., <code>kuijiale_0021.usda</code>), and the right panel displays a hierarchical list of all 3D objects along with their <em>semantic labels</em>, supporting spatial reasoning and interaction in embodied AI tasks.</p>
</div>
## ๐ Features
- โ
Fully compatible with **Isaac Sim 4.2** and **4.5** on both **Windows** and **Linux**.
- ๐ฎ Built for real-time simulation, supports **interactive physical agents**.
- ๐งฑ Material system based on **NVIDIA MDL** (Material Definition Language), ensures photorealistic rendering and cross-version compatibility.
- ๐ฆ Provided in `.usd` and `.usda` format with structured folders for **materials**, **meshes**, **lighting**, and **floorplan**.
---
## ๐ Directory Structure
The dataset is organized per scene. Each scene folder follows the structure below:
```
kujiale_xxxx/
โโโ .thumbs/ # Optional thumbnail or cache folder (can be ignored)
โโโ Materials/ # Material library
โ โโโ Textures/ # Texture images (optional, omitted here)
โ โโโ *.mdl # MDL material and instance files
โโโ Meshes/ # Mesh geometry (e.g., .usd or .obj)
โโโ kujiale_xxxx.usda # Top-level USD scene file
โโโ limpopo_golf_course_4k.hdr # Environment lighting HDR file
โโโ rooms.json # Room-level metadata and spatial layout (JSON format)
```
### ๐งญ Room Metadata (rooms.json)
Each scene folder includes a rooms.json file that defines the 2D floorplan layout of the space. It contains a list of room entries, where each room is defined by:
room_type: the semantic label (e.g., "living_room", "bedroom", "balcony", etc.)
polygon: a list of 2D coordinates representing the room's floor boundary in world coordinates
### ๐ Example
```
{
"room_type": "balcony",
"polygon": [
[-0.3784970703125, -6.55287060546875],
[4.005734375, -6.55287060546875],
[4.005734375, -4.8603486328125],
[-0.3784970703125, -4.8603486328125]
]
}
```
This represents a balcony room with a rectangular floorplan defined by a clockwise polygon in the Isaac Sim world coordinate system (X-Y plane). The polygon can be visualized or parsed using any geometric library (e.g., Shapely) to determine area, intersection, adjacency, etc.
### ๐งช Integration Tips
The coordinate system is consistent with Isaac Simโs world frame: X is forward, Y is right, Z is upward.
Room geometry can be directly loaded using libraries like `Shapely` for spatial reasoning or map generation.
๐ฆ Usage in Python
```
from shapely.geometry import Polygon
import json
with open("rooms.json", "r") as f:
rooms = json.load(f)
for room in rooms:
poly = Polygon(room["polygon"])
print(f"Room: {room['room_type']}, Area: {poly.area}")
```
<div align="center">
<img src="https://kloudsim-usa-cos.kujiale.com/InteriorAgent/texture2.png" alt="InteriorAgent structure overview" width="80%"/>
<p>A hierarchical view of structural elements in an InteriorAgent scene. All architectural components are grouped under four main semantic categories: <code>ceiling</code>, <code>wall</code>, <code>floor</code>, and <code>other</code> (including <code>door</code> and <code>window</code>).</p>
</div>
## ๐ Compatibility
- โ
Tested with:
- Isaac Sim v4.2
- Isaac Sim v4.5
- Operating Systems: Windows 10/11, Ubuntu 22.04
- ๐ง MDL materials tested with Omniverse RTX renderer.
- ๐ All files are offline usable and require no additional dependencies.
## ๐ Citation
If you use InteriorAgent in your research or development, please cite or link to our project page:
```
@misc{InteriorAgent2025,
title = {InteriorAgent: Interactive USD Interior Scenes for Isaac Sim-based Simulation},
author = {SpatialVerse Research Team, Manycore Tech Inc.},
year = {2025},
howpublished = {\url{https://huggingface.co/datasets/spatialverse/InteriorAgent}}
}
```
## ๐ License
This dataset is released under [InteriorAgent](https://kloudsim-usa-cos.kujiale.com/InteriorAgent/InteriorAgent_Terms_of_Use.pdf) License.
|