VisionAIre
  • About Nodeflux
  • Visionaire Stream
    • Overview
    • Requirements
      • Credential Keys
      • Tested Hardware
      • Bandwith Requirements
    • Installation Guide
      • Dependencies
      • Simple Installation
      • Advanced Installation
      • Clustering Installation
      • Add-ons Analytics Installation
        • People Attributes Installation
        • Vehicle Attributes Installation
        • OVOD Installation
        • OVIC Installation
        • VM Installation
        • VLM Installation
    • Analytics
      • Face Recognition
        • Additional Information
          • Overview
          • Disclaimer
          • Metrics
          • Testing
      • People Analytics
      • Crowd Estimation
      • PPE Detection
      • License Plate Recognition
      • Vehicle Analytics
      • Water Level Monitoring
        • Camera Guideline
      • Pre-Flood Monitoring
      • Person Smoking Detection
      • Person with Handphone Detection
      • Smoke and Fire Detection
      • Person Using Firearms Detection
      • Vandalism Attempt Recognition
      • ATM Burglary Incident Recognition
      • Road Crash Monitoring
      • People Fighting Recognition
      • Riot Recognition
    • Developer Guide
      • How our APIs work
      • HTTP APIs
      • Websocket
      • Database Structure
    • Changelogs
  • Visionaire Snapshot
    • Overview
    • Requirements
    • Installation Guide
      • Face Searching & Matching
        • Single Node
        • Clustering
      • Helmet Detection
      • Chicken Estimation
      • Face Detection
      • Over Dimension Over Load
      • Frontal License Plate Recognition
    • Analytics
      • Face Searching & Matching
        • Face Enrollment
          • Image Guideline
          • Face and Image Quality Assessment
            • Setup On Premise
            • API
          • Insert / Update / Delete Enrollment
          • Batch Enrollment
      • Helmet Detection
      • Chicken Estimation
      • People Demography
      • Face Detection
      • Over Dimension Over Load
      • License Plate Recognition -Frontal
    • Developer Guide
      • APIs
        • Face Searching & Matching
        • Helmet Detection
        • Chicken Estimation
        • People Demography
        • Face Detection
        • Over Dimension Over Load
        • Frontal License Plate Recognition
      • Vanilla APIs for Face Enrollment
      • Porting Enrollment Database Cluster to Docker
    • Changelogs
  • VisionAIre Dashboard
    • Introduction
    • Add Analytic Assignment
    • Accessing Vanilla Database
    • Connect to Vanilla Websocket
    • Create your own visualization
      • Migration from Old Streamer to New Streamer
      • Drawing Region of Interest
      • Additional Visualization Query
Powered by GitBook
On this page
  • Parameters
  • Response

Was this helpful?

Export as PDF
  1. Visionaire Snapshot
  2. Developer Guide
  3. APIs

Frontal License Plate Recognition

Parameters

In postman, send a POST to localhost:4004/v1/license-plate-recognition

{
  "images": ["base64"]
}

Response

Success

{
  "job": {
    "id": "20221020043031051e70403920ef4166736e95205fdc6c8f2b6f6dd4b5d7bc4efd78606ef5ab20bca",
    "result": {
      "analytic_type": "LICENSE_PLATE_RECOGNITION",
      "result": [
        {
          "license_plate_recognition": [
            {
              "bounding_box": {
                "height": 0.07172417640686035,
                "left": 0.21474507451057434,
                "top": 0.6687697172164917,
                "width": 0.10315108299255371
              },
              "confidence": 0.8935918807983398,
              "label": "D1336TD"
            },
            {
              "bounding_box": {
                "height": 0.06129580736160278,
                "left": 0.6659622192382813,
                "top": 0.5559597015380859,
                "width": 0.0974544882774353
              },
              "confidence": 0.9186372756958008,
              "label": "2828XM"
            }
          ]
        }
      ],
      "status": "success"
    }
  },
  "message": "License Plate Recognition Success",
  "ok": true
}

Error

{
  "job": {
    "id": "hex",
    "result": null
  },
  "message": "string",
  "ok": false
}
PreviousOver Dimension Over LoadNextVanilla APIs for Face Enrollment

Last updated 2 years ago

Was this helpful?