Classification.Detect

Perform Classification on a list of Images.

ClassifyRequest

images
array[ImageItem]
feed_id
string

User specified ID to reference the source of the image

custom_id
string

User specified ID used to identify an image. This optional custom ID can be used to map your image request to a result from Engine. Engine does not perform any operations with custom ID, it merely just passes the value directly back in the response. It is up to the client to ensure uniqueness.

group_id
string

User specified GroupID used to identify an image. This is only used by the Face Recognition feature.

data
string

Either encoded or pixel image data

exclusion_zones
array[ExclusionZone]

Zones to ignore on this image (optional)

points
array[Point]

Ordered list of points delimitating this polygon

x
int32

Position on the X-axis

y
int32

Position on the Y-axis

classes
array[string]

The classes to classify

persistence
Persistence

ClassifyResponse

images
array[ClassifyImageResult]
image_id
string

ID assigned to the image

feed_id
string

User specified ID to reference the source of the image

custom_id
string

Arbitrary user specified ID to reference the image

results
array[ClassifyResult]
class
string

The class found

confidence
float

The confidence for the class

exclusion_zones
array[ExclusionZone]
points
array[Point]

Ordered list of points delimitating this polygon

x
int32

Position on the X-axis

y
int32

Position on the Y-axis