mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-08-13 13:47:36 +02:00
turn default for dedupe to False
This commit is contained in:
parent
3eec67a555
commit
534b2b3869
@ -131,7 +131,7 @@ class Camera:
|
||||
self.mqtt_client = mqtt_client
|
||||
self.mqtt_topic_prefix = '{}/{}'.format(mqtt_prefix, self.name)
|
||||
self.label = config.get('label', 'person')
|
||||
self.dedupe_snapshot_publish = config.get('dedupe_snapshot_publish', True)
|
||||
self.dedupe_snapshot_publish = config.get('dedupe_snapshot_publish', False)
|
||||
|
||||
# create a numpy array for the current frame in initialize to zeros
|
||||
self.current_frame = np.zeros(self.frame_shape, np.uint8)
|
||||
|
Loading…
Reference in New Issue
Block a user