`min_person_area` doesn't seem to be filtering objects
See original GitHub issueRight now I have a camera set up that streams in 1080p. Because of that, I knew I would need to raise the min_person_area
to account for the extra pixels. Below is one of the debug frames that I capture when an MQTT message is sent for a person being detected.
I’m using a min_person_area
of 3000
, so it doesn’t seem like a person in the image across the street below has enough pixels to meet that criteria.
Is there a chance the MQTT person message is being sent without taking into account the min_person_area
, or am I off by an order of magnitude with my values?
Below is my config.
web_port: 5000
mqtt:
host: mqtt
port: 8883
topic_prefix: frigate
user: <user>
password: <password>
cameras:
front_window:
rtsp:
user: <username>
host: <ip_address>
port: <port>
password: <password>
path: <path>
regions:
- size: 700
x_offset: 1220
y_offset: 200
min_person_area: 3000
threshold: 0.9
- size: 1080
x_offset: 0
y_offset: 0
min_person_area: 3000
threshold: 0.9
Issue Analytics
- State:
- Created 4 years ago
- Comments:9 (9 by maintainers)
Top Results From Across the Web
filtering an object-array with filter doesn't work for some reason
Change filteredTodo = todos.filter(function(todo){ return !filters.hideCompleted || !todo.completed; }).
Read more >Azure AD Connect sync: Configure filtering - Microsoft Entra
By using filtering, you can control which objects appear in Azure Active Directory (Azure AD) from your on-premises directory.
Read more >Filtering and gathering results from accepted/rejects varaibles.
For metrics, it doesn't seem reasonable to be creating a bunch of filters anyway. All my metrics script just open the module, go...
Read more >Filter and Grouping considerations for Custom WITH or ...
Filtering the Primary Object will return the records of the Primary Object ... Child Object records will appear in the grouping value on...
Read more >Filtered List View settings - IBM
You can globally configure the following Filtered List View page settings. ... appears empty after you load the filter: the % character does...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I do have min person area defined for all regions on my cameras. And yes, if it wasn’t defined, it would skip the continue and add all detected person objects.
I’m closing this. After getting the viewbox with the area size figured it, it was definitely the case that they were way larger than I thought.
Merge this PR if you’d like them added. https://github.com/blakeblackshear/frigate/pull/47