Documentation for Auto PSIM 1.0.1.

Previous page ULPR Server  Receiving an image by ID Next page

You can use a POST request to search for a vehicle license plate by image.

General request format:

POST http://IP address:port/lprserver/FindNumbersByImage

Request body:

{
"id": {id},
"image": {image}
}

Parameters in the request body:

ParameterRequiredDescription
idYesServer ID
imageYesVehicle image in Base64

Request example:

POST http://127.0.0.1:10001/lprserver/FindNumbersByImage

{
"id": "1",
"image": "/9j/4AAQSkZJRg..."
}

Response example:

{
    "Plate": "а574мх|97",
    "Status": "OK"
}

Note

Successful response depends on the settings of the detection tool, as not all detection tools can recognize a license plate from a single image.


  • No labels