Upload interiorgen3d/__init__.py
Browse files- interiorgen3d/__init__.py +22 -0
interiorgen3d/__init__.py
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# InteriorGen3D
|
| 2 |
+
# Single 2D Interior Image → High-Quality Editable 3D Interior Scene
|
| 3 |
+
|
| 4 |
+
"""
|
| 5 |
+
InteriorGen3D: Production-grade AI system for converting single interior photographs
|
| 6 |
+
into fully editable, photorealistic 3D scenes with:
|
| 7 |
+
- Semantically decomposed furniture objects
|
| 8 |
+
- Physically consistent room geometry
|
| 9 |
+
- PBR materials (albedo, metallic, roughness)
|
| 10 |
+
- Multiple export formats (GLB, FBX, OBJ, USDZ)
|
| 11 |
+
- Real-world metric scale
|
| 12 |
+
|
| 13 |
+
Architecture: 5-stage pipeline
|
| 14 |
+
1. Scene Understanding (depth, segmentation, layout)
|
| 15 |
+
2. Room Structure Generation (walls, floor, ceiling)
|
| 16 |
+
3. Object Generation (per-furniture 3D meshes)
|
| 17 |
+
4. Scene Composition & Refinement
|
| 18 |
+
5. Export & Editing
|
| 19 |
+
"""
|
| 20 |
+
|
| 21 |
+
__version__ = "0.1.0"
|
| 22 |
+
__author__ = "InteriorGen3D Team"
|