Comment on page
License Plate Recognition
Nodeflux License Plate Recognition (LPR) is a Vision Artificial Intelegence Analytics Software which provides recognition of face plates for all types of vehicles. Nodeflux LPR is using a Deep Learning algorithm that developed to adapt real conditions in indonesia, like various kinds of plate, and any wide range of environmental conditions.
Send a POST request to
https://api.cloud.nodeflux.io/v1/analytics/license-plate-recognition
by providing these arguments as application/json
.{
"images": [
"{INSERT_JPEG_IMAGE_AS_BASE64_STRING_FOR_YOUR_PLATE_NUMBER}"
]
HTTP Mapping: 202 Accepted
{
"job": {
"id": "b735df462ca567ed6e915c730ec3e44409c9ea546c5199d97b80fb841fe127e9",
"result": {
"license_plate_recognitions": [
{
"bounding_box": { // bb plate
"top": 0.396,
"left": 0.25466666,
"height": 0.243968,
"width": 0.3342151
},
"confidence": 81.691956,
"license_plate_number": "B1EDI"
}
]
}
},
"message": "License Plate Recognition Success",
"ok": true
}
Last modified 1yr ago