[Config Support]: Lower min_score for stationary objects? #10190
Replies: 2 comments 1 reply
-
that's not how that works. If the score is below min_score then that means the detection is discarded which means the object is considered missing in the frame (ie not detected). For the object to continue to be stationary and ongoing it must be detected which means the score must be above min_score. Lowering min_score for stationary objects would just make the stationary false positives stick around longer |
Beta Was this translation helpful? Give feedback.
-
Thanks for explaining, but I think maybe the docs are wrong then? I'm assuming that:
Is my third assumption incorrect? I'm getting that belief from this page that shows that the 0.55 frame isn't included in any of the following frames to compute the overall score. |
Beta Was this translation helpful? Give feedback.
-
Describe the problem you are having
I often have a false positive pop up that gets detected for 10 seconds and becomes stationary.
The problem is that this remains detected for a very long time because I think the detection every 50 frames for a stationary object is returning very low scores, under min_score, which are then being discarded. That means they aren't contributing to the overall score for the object and the object remains above the threshold for hours. It seems to unstick once the bounding box moves enough to be considered active again, or if there's incidental movement in the area, like an actual person walking past.
Here's an example:
That firepit was detected as a person for an hour and I suspect there was an hour-long string of scores under the min_score that probably should have contributed to understanding it's not actually a person.
Hope this makes sense? it might be good to add a separate min_score specifically for continued detection of stationary objects, so we can lower that to zero so that false positives can be cleared more quickly. I may also just be misunderstanding how this works.
Version
0.13.0-C35C7DA
Frigate config file
Relevant log output
Frigate stats
No response
Operating system
Other Linux
Install method
Docker Compose
Coral version
USB
Any other information that may be helpful
No response
Beta Was this translation helpful? Give feedback.
All reactions