Comment on page

License Plate Recognition

This API will be deprecated in June 1st 2021. Please consider to use Sync V2
Send a POST request to https://api.cloud.nodeflux.io/v1beta1/image-analytic/stream by providing these arguments as application/json.

Headers

Key
Value
Content-type
application/json
Authorization
Your authorization key.
x-nodeflux-timestamp
x-nodeflux-timestamp from the Authorization API.

Request Body

{
"analytics":[
{
"type":"LICENSE_PLATE_RECOGNITION"
}
],
"image":{
"encoding":"IMAGE_ENCODING_JPEG",
"content":"{INSERT_JPEG_IMAGE_AS_BASE64_STRING}"
}
}

Response Body

HTTP Mapping: 200 OK
{
"result": {
"license_plate_recognitions": [
{
"bounding_box": {
"top": 0.396,
"left": 0.25466666,
"height": 0.243968,
"width": 0.3342151
},
"confidence": 81.691956,
"license_plate_number": "B1EDI"
}
]
}
}
!!! info "Protocol Reference"
Protocol reference available on [nodeflux.analytics.v1beta1.LicensePlateRecognition](../../protocol/analytics#nodeflux.analytics.v1beta1.LicensePlateRecognition)