For the complete documentation index, see llms.txt. This page is also available as Markdown.

5.4.0 LPR Fuzzy Reader

Steps to enable matchFirstCandidate aka "fuzzy reader"

  1. Log in with Admin user account

  2. Navigate to "localhost:5001/gql

  3. Clear notes on left-hand side table, and enter the following then press play:

query LprCameras {
  lprCameraConfigs {
    cameraType
    configKey
    debug
    deviceType
    lastLoad
    loadOutLocationKey
    lprCameraUrl
    lprFieldToMatch
    matchFirstCandidite
    name
    socketKeepAlive
    startupOption
  }
}

You will get results like the following:

This provides the camera's configuration in the right-hand side table:

Pasted results:

  1. The configuration can be copy-pasted into the mutation to enable matchFirst like the following:

  1. Ensure you have changed matchFirstCandidate from false to true, and then press play.

The corresponding results in the right-hand table should reflect that matchFirstCandidate now shows as "true", but if you want to take extra caution you can run the config query again.

Last updated