From 26f4e27df0befdd1a36085b54819d7f81319a797 Mon Sep 17 00:00:00 2001 From: Blake Blackshear Date: Sun, 11 Oct 2020 12:52:50 -0500 Subject: [PATCH] update default detectors --- detect_objects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/detect_objects.py b/detect_objects.py index d2bfede69..53c797f9f 100644 --- a/detect_objects.py +++ b/detect_objects.py @@ -61,7 +61,7 @@ FFMPEG_DEFAULT_CONFIG = { GLOBAL_OBJECT_CONFIG = CONFIG.get('objects', {}) WEB_PORT = CONFIG.get('web_port', 5000) -DETECTORS = CONFIG.get('detectors', [{'type': 'edgetpu', 'device': 'usb'}]) +DETECTORS = CONFIG.get('detectors', {'coral' {'type': 'edgetpu', 'device': 'usb'}}) class CameraWatchdog(threading.Thread): def __init__(self, camera_processes, config, detectors, detection_queue, tracked_objects_queue, stop_event):