CoolFace
Apppublic

newtechdevng/construction-detection-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
README.md35 linesDownload Raw Back to root
1---2title: Construction Detection API3emoji: ๐Ÿ—๏ธ4colorFrom: yellow5colorTo: blue6sdk: docker7app_port: 78608pinned: true9---10 11# Construction Detection API12 13Detects construction elements (beam, column, door, floor, stairs, wall, window) and measures their dimensions.14 15## API Endpoints16 17| Endpoint | Method | Description |18|---|---|---|19| `/` | GET | API info |20| `/health` | GET | Health check |21| `/detect` | POST | Upload image โ†’ get detections |22| `/calibrate` | POST | Set reference for real-world units |23 24## Usage25 26```python27import requests28 29r = requests.post(30    "https://dipangshuborah-construction-detection-api.hf.space/detect",31    files={"file": open("image.jpg", "rb")}32)33print(r.json())34```35