VehicleAPIResponse

Interface Response object returned by the Vehicle API on successful execution.

Propertiesโ€‹

NameTypeDescription
*engines?string[]Includes the names of the recognition engines that successfully processed the request. (Removed since version 1.3.)
data?{ vehicles: { bounds: { extendedPlateFrame: { bottomLeft: { x: ...; y: ... }; bottomRight: { x: ...; y: ... }; topLeft: { x: ...; y: ... }; topRight: { x: ...; y: ... } }; vehicleFrame: { bottomLeft: { x: ...; y: ... }; bottomRight: { x: ...; y: ... }; topLeft: { x: ...; y: .....The recognition results.
nodename?stringThe name of the node this request has been processed by. This is diagnostic information to be included in error reports.
nodetime?numberTotal processing time spent on the worker node (includes processing, image loading and latency). (Available since version 1.4.)
recognitiontime?numberNet processing time spent on recognizing the already loaded image. Use this number if you want to make an objective comparison between the difficulty of different images. (Available since version 1.4)
startuptime?numberStartup time of the node processing the request. This can be greater in case of a cold start. (Available since version 1.4.)
version?stringThe version of the API that returned the response. Incremented each time the response structure changes.

Source: vehicle/response.ts:11