Detect car boot open/closed attribute when car is parked #22836
Replies: 2 comments 5 replies
-
|
Your understanding is correct. Once an object becomes stationary, object detection does not continually run on that object. Detection will only run again when motion is detected near the object, or at the configured The default stationary configuration is: detect:
stationary:
interval: 50
threshold: 50The To have Frigate re-evaluate your parked cars more frequently for attribute changes (like an open boot), you can decrease the detect:
stationary:
interval: 10
threshold: 50This would run detection every 10th frame on stationary objects instead of every 50th, giving your attribute classifier more opportunities to detect when the boot opens. Keep in mind that lowering the interval will increase resource usage since detection runs more frequently on stationary objects. You may need to experiment to find a balance between responsiveness and system load. 📚 Sources: Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
-
|
This would be fairly complicated to change the processing for stationary objects in this way. The object classification feature is designed to represent a way to differentiate objects, not track a live state |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I am trying to use object classifications with attributes to detect when either of our car boots (trunks) have been left open. I don't think I can use object states for this because the cars can change position on our driveway etc. Ultimately I want to setup a notification in HA to say "The boot has been left open on the Mazda".
What I'm finding is that once the car has parked on the driveway and I open the boot, I don't think the object is being re-classified. I've tried leaving it for a period of time (5 mins or so), but it still doesn't seem to pick it up.
My stationary config is as per Frigate defaults. Cars are being detected OK on the
front_drivewayzone and I am just starting to train the classification forFamily Cars, which seems to be going ok. It feels like the issue is that once the object becomes stationary, it is not being re-evaluated, but I maybe wrong.Some relevant parts from the config:
Any general advice would be greatly appreciated... I may be approaching this in the wrong way.
Cheers,
Andy
Beta Was this translation helpful? Give feedback.
All reactions