mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-01-07 00:06:57 +01:00
Remove parked car guide as it is no longer relevant (#11451)
* Remove parked cars guide * Update sidebar * Update stationary_objects.md
This commit is contained in:
parent
7413810fa4
commit
8897b4b0e0
docs
@ -23,10 +23,6 @@ NOTE: There is no way to disable stationary object tracking with this value.
|
||||
|
||||
`threshold` is the number of frames an object needs to remain relatively still before it is considered stationary.
|
||||
|
||||
## Handling stationary objects
|
||||
|
||||
In some cases, like a driveway, you may prefer to only have an event when a car is coming & going vs a constant event of it stationary in the driveway. You can reference [this guide](../guides/parked_cars.md) for recommended approaches.
|
||||
|
||||
## Why does Frigate track stationary objects?
|
||||
|
||||
Frigate didn't always track stationary objects. In fact, it didn't even track objects at all initially.
|
||||
|
@ -1,71 +0,0 @@
|
||||
---
|
||||
id: parked_cars
|
||||
title: Handling parked cars
|
||||
---
|
||||
|
||||
:::tip
|
||||
|
||||
This is an area targeted for improvement in future releases.
|
||||
|
||||
:::
|
||||
|
||||
Many people use Frigate to detect cars entering their driveway, and they often run into an issue with repeated events of parked cars and/or long running events after the car parks. This can cause Frigate to store more video than desired.
|
||||
|
||||
:::warning
|
||||
|
||||
It is not recommended to use motion masks to try and eliminate parked cars in your driveway. Motion masks are designed to prevent motion from triggering object detection and will not prevent objects from being detected in the area if motion is detected outside of the motion mask.
|
||||
|
||||
:::
|
||||
|
||||
## Repeated events of parked cars
|
||||
|
||||
To only be notified of cars that enter your driveway from the street, you can create multiple zones that cover your driveway. For cars, you would only notify if `entered_zones` from the events MQTT topic has contains the entrance zone.
|
||||
|
||||
See [this example](../configuration/zones.md#restricting-zones-to-specific-objects) from the Zones documentation to see how to restrict zones to certain object types.
|
||||
|
||||
![Driveway Zones](/img/driveway_zones-min.png)
|
||||
|
||||
To limit snapshots and events, you can list the zone for the entrance of your driveway under `required_zones` in your configuration file.
|
||||
|
||||
```yaml
|
||||
camera:
|
||||
record:
|
||||
events:
|
||||
required_zones:
|
||||
- zone_2
|
||||
zones:
|
||||
zone_1:
|
||||
coordinates: ... (parking area)
|
||||
zone_2:
|
||||
coordinates: ... (entrance to driveway)
|
||||
```
|
||||
|
||||
This will only save events if the car entered the entrance zone at any point.
|
||||
|
||||
## Long running events
|
||||
|
||||
There are a few recommended approaches to avoid excessive storage use due to parked cars. These can be used in combination.
|
||||
|
||||
### 1. Use `motion` or `active_objects` mode for event recordings
|
||||
|
||||
Leverages [recording settings](../configuration/record.md#what-do-the-different-retain-modes-mean) to avoid excess storage use.
|
||||
|
||||
#### Advantages of this approach
|
||||
|
||||
For users using `motion` mode for continuous recording, this successfully avoids extra video from being stored for cars parked in view because all motion video is already being saved.
|
||||
|
||||
#### Limitations of this approach
|
||||
|
||||
For users that only want to record motion during events, long running events will result in all motion being stored as long as the car is in view. You can mitigate this further by using the `active_objects` mode for event recordings, but that may result less video being retained than is desired.
|
||||
|
||||
### 2. Use an object mask to prevent detections in the parking zone
|
||||
|
||||
Leverages [object filter masks](../configuration/masks.md#object-filter-masks) to prevent detections of cars parked in the driveway.
|
||||
|
||||
#### Advantages of this approach
|
||||
|
||||
Using this approach, you will get two separate events for when a car enters the driveway, parks in the parking zone, and then later leaves the zone. Using an object mask will ensure that cars parked in the parking zone are not detected and confused with cars driving by on the street as well.
|
||||
|
||||
#### Limitations of this approach
|
||||
|
||||
This approach will only work for cars that park in the parking zone. Cars that park in other areas will still be tracked as long as they are in view. This will also prevent zone sensors from telling you if a car is parked in the parking zone from working.
|
@ -13,7 +13,6 @@ module.exports = {
|
||||
"guides/configuring_go2rtc",
|
||||
"guides/ha_notifications",
|
||||
"guides/ha_network_storage",
|
||||
"guides/parked_cars",
|
||||
"guides/reverse_proxy",
|
||||
],
|
||||
Configuration: {
|
||||
|
Loading…
Reference in New Issue
Block a user