Computer Vision

Detect Features

POST
Detect room features from images (hardwood floor, granite countertop, kitchen island, 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
A list of detected features and their probabilities.
POST
1curl -X POST https://api.hellodata.ai/qualityscore/detect_features \
2 -H "x-api-key: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "image_urls": [
6 "image_urls"
7 ]
8}'
Response - 200 Success
1{
2 "result": {
3 "images": [
4 "images"
5 ],
6 "features": [
7 [
8 {
9 "probability": 0.9,
10 "feature": "stainless_steel_appliances"
11 }
12 ]
13 ]
14 }
15}