Test Drive ALPR+

Experience our powerful ALPR+ technology that provides the license plate and vehicle data you need to empower your business. 

Obtain vehicle identification data including make, model, color, and generation, even when a plate is not visible. ALPR+ has flexible deployment options to personalize your solution to your use case while complementing your tech stack.

With ALPR+ You Get More

Our Vehicle Analytics platform puts you in drivers seat with more:

Accuracy

Accuracy
Industry leader in providing the most accurate License Plate and Vehicle Recognition

Performance

Performance
Faster than real-time analysis for all vehicles and license plates in a scene

Robustness

Robustness
Designed to work in challenging conditions e.g. low light, acute angles, small sizes, etc.

Flexibility

Flexibility
Deployment options that include on-premise, cloud, edge

Powerful

Powerful
Unlock the power of complete vehicle analysis with a single API call

Integration

Integration
Offers programmable REST-API across a variety of platforms.

Explore ALPR+ With Ease

Put our computer vision models to the and see what data you can collect by uploading your own image or using one of sample images. Click on the image to see detection results. For data outputs, click the JSON response checkbox.

Scroll down the page to see code samples or check out the Developer Quick Start Guide for Vehicle Analytics API.

We love questions. Contact our team to discuss your business needs or get our technical questions answered.

Tip: after clicking on a thumbnail, click again to return to the original image

View ALPR+ Sample API Requests

Sample API Call

Request:

curl --location --request POST 'https://SERVER_IP/vx/images:annotate' \
--header 'Content-Type: application/json' \
--data-raw '{
  "requests": [
    {
      "image": {
        "source": {
          "imageUri": "https://d1mfcqjbhp6mmy.cloudfront.net/vehicles/audi-sports-car-r8-marlene.jpeg"
        }
      },
      "features": [
        {
          "type": "VEHICLE_DETECTION"
        },
        {
          "type": "LICENSE_PLATE_DETECTION"
        }
      ]
    }
  ]
}'
Sample API Response

Response:

{
  "responses": [
    {
      "licenseplateAnnotations": [
        {
          "boundingPoly": {
            "vertices": [
              {
                "x": 620,
                "y": 450
              },
              {
                "x": 738,
                "y": 450
              },
              {
                "x": 738,
                "y": 478
              },
              {
                "x": 620,
                "y": 478
              }
            ],
            "normalizedVertices": [
              {
                "x": 0.6888888888888889,
                "y": 0.7258064516129032
              },
              {
                "x": 0.82,
                "y": 0.7258064516129032
              },
              {
                "x": 0.82,
                "y": 0.7709677419354839
              },
              {
                "x": 0.6888888888888889,
                "y": 0.7709677419354839
              }
            ]
          },
          "locale": "en-US",
          "score": 0.86,
          "mid": "/m/01jfm_",
          "description": "License plate",
          "string": {
            "value": "RTBB221",
            "score": 0.86
          },
          "region": {
            "value": "Germany",
            "score": 0.86
          }
        }
      ],
      "vehicleAnnotations": [
        {
          "boundingPoly": {
            "vertices": [
              {
                "x": 428,
                "y": 287
              },
              {
                "x": 833,
                "y": 287
              },
              {
                "x": 833,
                "y": 556
              },
              {
                "x": 428,
                "y": 556
              }
            ],
            "normalizedVertices": [
              {
                "x": 0.47555555555555556,
                "y": 0.4629032258064516
              },
              {
                "x": 0.9255555555555556,
                "y": 0.4629032258064516
              },
              {
                "x": 0.9255555555555556,
                "y": 0.896774193548387
              },
              {
                "x": 0.47555555555555556,
                "y": 0.896774193548387
              }
            ]
          },
          "locale": "en-US",
          "score": 0.94,
          "mid": "/m/0k4j",
          "description": "Car",
          "licenseplate": {
            "$ref": "#/responses/0/licenseplateAnnotations/0"
          },
          "color": {
            "value": "white",
            "score": 0.94
          },
          "model": {
            "value": {
              "make": "audi",
              "model": "r8",
              "generation": "2007 2014"
            },
            "score": 0.94
          }
        }
      ]
    }
  ]
}

Want to learn more? Contact us for a private showing!