Skip to content

No captures, or notifications #122

Answered by djdd87
mpdaws asked this question in Q&A
Mar 31, 2022 · 2 comments · 2 replies
Discussion options

You must be logged in to vote

Right, the reason is your min and maxes:

"Cameras": [
{
    "Name": "FrontYard",
    "Types": [ "Person", "Car", "Truck" ],
    "Threshold": 45,
    "MinSizeX": 250,
    "MinSizeY": 500
}    

As you'll see in the logs you provided, the size of the detected item is 96x206, which is below the minimum sizes you've defined (96 is less than 250 and 206 is less than 500). The % is OK as you've defined 45% as the threshold and the AI is 46% certain it's a person. So while the AI is confident enough it's a person to meet your threshold, you min and max sizes exclude it.

If you set your logging to DEBUG, then the logs will explain why things were excluded.

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
1 reply
@mpdaws
Comment options

Comment options

You must be logged in to vote
1 reply
@mpdaws
Comment options

Answer selected by mpdaws
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants