Skip to content

Commit

Permalink
Merge branch 'master' of github.com:ljmerza/frigate_plate_recognizer
Browse files Browse the repository at this point in the history
  • Loading branch information
ljmerza committed Feb 1, 2025
2 parents d362bc2 + bc4da78 commit c4f488c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,3 +148,15 @@ frigate:
If a watched plate is found in the list of candidates plates returned by plate-recognizer / CP.AI, the response will be updated to use that plate and it's score. The original plate will be added to the MQTT response as an additional `original_plate` field.

If no candidates match and fuzzy_match is enabled with a value, the recognized plate is compared against each of the watched_plates using fuzzy matching. If a plate is found with a score > fuzzy_match, the response will be updated with that plate. The original plate and the associated fuzzy_score will be added to the MQTT response as additional fields `original_plate` and `fuzzy_score`.

### Add license Plates as home assistant mqtt sensor

```yaml
sensor:
- name: "License plate"
state_topic: "frigate/plate_recognizer"
value_template: "{{ value_json.plate_number }}"
#unit_of_measurement: "na"
json_attributes_topic: "frigate/plate_recognizer"
icon: mdi:car
```

0 comments on commit c4f488c

Please sign in to comment.