[Support]: Help needed with recording of Person only #22100
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Based on your configuration, you're tracking multiple object types (person, car, bicycle, motorcycle, dog, cat, face) but only want recordings for person objects(3). The issue is that your To record only person objects, you need to configure your doorbell:
review:
alerts:
labels:
- person
required_zones:
- Driveway
detections:
labels:
- person
required_zones:
- DrivewayBy default, alerts include person and car objects, and detections include all tracked objects(2). By explicitly setting the Additionally, you may want to restrict your zone to only trigger for person objects: zones:
Driveway:
coordinates: 0.007,0.321,0.129,0.261,0.238,0.281,0.353,0.545,0.441,0.533,0.508,0.532,0.57,0.53,0.655,0.531,0.688,0.602,0.721,0.591,0.736,0.568,0.847,0.568,0.987,0.649,0.996,0.992,0.007,0.99
loitering_time: 0
inertia: 5
objects:
- personThis ensures that only person objects can trigger the Driveway zone(1). 📚 Sources: Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.

(1), (2), (3)
Based on your configuration, you're tracking multiple object types (person, car, bicycle, motorcycle, dog, cat, face) but only want recordings for person objects(3). The issue is that your
reviewconfiguration only restricts detections to the Driveway zone, but doesn't limit which object types trigger recordings(2).To record only person objects, you need to configure your
reviewsection to specify which labels qualify as alerts and detections. Here's what you should modify in your config: