Spaces:
Runtime error
Runtime error
File size: 628 Bytes
54d83cd fadb92b 54d83cd fadb92b 54d83cd fadb92b | 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 | ---
title: Raster2Seq
emoji: 🏠
colorFrom: blue
colorTo: purple
sdk: docker
pinned: false
app_port: 7860
---
# Raster2Seq - Floor Plan Vectorization
Upload a floor plan image to detect room polygons and their semantic labels.
This Space runs the Raster2Seq model for converting raster floor plan images into vectorized polygon sequences with room type classification.
## API Usage
This Space exposes a Gradio API. You can call it programmatically:
```python
from gradio_client import Client
client = Client("AGLO-AI/raster2seq")
result = client.predict(
image="path/to/floorplan.png",
api_name="/predict"
)
```
|