Face Recognition #21632
|
Hello, |
Replies: 3 comments 4 replies
|
Yes, you can integrate Frigate's face recognition into Home Assistant automations.(1) When face recognition is enabled, Frigate adds recognized names as a The Home Assistant integration provides sensors that expose face recognition data.(3) Specifically, there are occupancy sensors that track the last recognized face.(4) For automations, you have multiple options: Using MQTT Topics: Using Home Assistant Sensors: Important Configuration Note: objects:
track:
- person📚 Sources:
Have another question? Just tag @inkeep. |
|
Your MQTT configuration has an incorrect The Here's the correct configuration: mqtt:
host: 192.168.1.130
port: 1883
user: solarflor
password: floriano1628
topic_prefix: frigateWith this configuration, Frigate will automatically publish to topics like The Additional optional MQTT settings you might consider: mqtt:
enabled: True
host: 192.168.1.130
port: 1883
topic_prefix: frigate
client_id: frigate
user: solarflor
password: floriano1628
stats_interval: 60
qos: 0The 📚 Sources:
Have another question? Just tag @inkeep. |
|
it seems there is something wrong in my case. This is the Frigate config and this the HA automation I copied from @hawkeye217 |
Your MQTT configuration has an incorrect
topic_prefixvalue.(1)The
topic_prefixshould be justfrigate(or another simple name), notfrigate/tracked_object_update.(2)(1) Thetracked_object_updatepart is automatically appended by Frigate when publishing messages.(2)Here's the correct configuration:
(1)
With this configuration, Frigate will automatically publish to topics like
frigate/tracked_object_update,frigate/events, andfrigate/<camera_name>/<object_name>.(2)The
topic_prefixmust be unique if you're running multiple Frigate instances.(1) You should also ensure theclient_id…