Computer Vision

Detect Room Function

POST
Detect room function from images (living room, kitchen, etc.) Can process up to 30 image urls at a time.

Request

This endpoint expects an object.
image_urls
list of stringsRequired
A list of image URLs to send to the computer vision API.

Response

This endpoint returns an object
result
object
POST
1curl -X POST https://api.hellodata.ai/qualityscore/detect_room_function \
2 -H "x-api-key: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "image_urls": [
6 "image_urls"
7 ]
8}'
200
Successful
1{
2 "result": {
3 "images": [
4 "images"
5 ],
6 "rooms": [
7 [
8 {
9 "probability": 0.9,
10 "room": "kitchen"
11 }
12 ]
13 ]
14 }
15}