Skip to content

Commit

Permalink
Merge pull request #14 from kyle4269/dev
Browse files Browse the repository at this point in the history
Update README and some Code Changes
  • Loading branch information
kyle4269 authored Mar 13, 2024
2 parents ed8d76f + a8cfdf2 commit 8d86c14
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ set `logger_level` in your config to `DEBUG` to see more logging information:
logger_level: DEBUG
```

Logs will be in `/config/frigate_plate_recognizer.log`
Logs will be in `/config/frigate_alpr.log`

## Save Snapshot Images to Path

Expand All @@ -94,7 +94,7 @@ If you want frigate-plate-recognizer to automatically save snapshots of recogniz
```yml
frigate:
draw_box: True # Optional - Draws a box around the plate on the snapshot along with the license plate text (Required Frigate plus setting)
always_save_snapshot: True # Optional - will save a snapshot of every event sent to frigate_plate_recognizer, even if no plate is detected
always_save_snapshot: True # Optional - will save a snapshot of every event sent to frigate_alpr, even if no plate is detected
```

Snapshots will be saved into the '/plates' directory within your container - to access them directly, map an additional volume within your docker-compose, e.g.:
Expand Down
6 changes: 3 additions & 3 deletions index.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
first_message = True
_LOGGER = None

VERSION = '1.3.5'
VERSION = '1.3.6'

CONFIG_PATH = '/config/config.yml'
DB_PATH = '/config/frigate_plate_recogizer.db'
LOG_FILE = '/config/frigate_plate_recogizer.log'
DB_PATH = '/config/frigate_alpr.db'
LOG_FILE = '/config/frigate_alpr.log'
SNAPSHOT_PATH = '/plates'

DATETIME_FORMAT = "%Y-%m-%d_%H-%M"
Expand Down

0 comments on commit 8d86c14

Please sign in to comment.