allow defining model shape and switch to mobiledet as default model

This commit is contained in:
Blake Blackshear
2020-12-09 07:18:53 -06:00
parent 186a4587c7
commit 91cde6ce7b
5 changed files with 28 additions and 26 deletions

View File

@@ -193,7 +193,7 @@ CAMERAS_SCHEMA = vol.Schema(vol.All(
FRIGATE_CONFIG_SCHEMA = vol.Schema(
{
vol.Optional('model', default={'width': 300, 'height': 300}): {
vol.Optional('model', default={'width': 320, 'height': 320}): {
vol.Required('width'): int,
vol.Required('height'): int
},