-
Hello everyone. I'm really impressed by this project and have wanted to get improvements like this since I first setup SSS. I've run through the setup, and it all looked very promising, but unfortunately I get no files in the capture folder and no notifications. I've turned logging up to informational level and can see that objects are correctly being identified by the AI, but that's where it stops. Any clues on what I might be getting wrong here? I've read through the readme a few times to see if I've missed something obvious, but nothing is jumping out at me. Also, less importantly, the TZ variable doesn't seem to be applying (I'm Australia/Brisbane) and everything is displaying GMT. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
The TZ issue is something discussed many times in the issue tracker. It's a Synology Docker issue, not a SynoAI issue. The TZ variable only applies to the container, not the logging. You'll need to provide your config and a screenshot of your volumes directory if you want any help. |
Beta Was this translation helpful? Give feedback.
-
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. |
Beta Was this translation helpful? Give feedback.
Right, the reason is your min and maxes:
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.