CoolFace
Apppublic

newtechdevng/construction-detection-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
App README

Construction Detection API

Detects construction elements (beam, column, door, floor, stairs, wall, window) and measures their dimensions.

API Endpoints

EndpointMethodDescription
/GETAPI info
/healthGETHealth check
/detectPOSTUpload image → get detections
/calibratePOSTSet reference for real-world units

Usage

python
import requests

r = requests.post(
    "https://dipangshuborah-construction-detection-api.hf.space/detect",
    files={"file": open("image.jpg", "rb")}
)
print(r.json())