[Config Support]: Problem detecting people further "away"
See original GitHub issueDescribe the problem you are having
hello everyone, I use a frigate with 4 cameras. Everything works fine in 3 of them, while in the fourth one (the one with the best definition, called “Giardino”) I have a little problem with detecting people. In practice, the view is very wide, and people are only detected in the red part, while they are rarely seen in the yellow part, being further away and therefore smaller. I’ve read all the documentation, but I’m a newbie and I don’t quite understand how I can fix this. Thank you
Version
0.11.1-2EADA21
Frigate config file
mqtt:
host: 192.168.1.56
user: xxx
password: xxx
topic_prefix: frigate
client_id: frigate
cameras:
Ingresso:
ffmpeg:
inputs:
- path: rtsp://xxx:xxx@192.168.1.65:554/live2.sdp
roles:
- detect
- path: rtsp://xxx:xxx@192.168.1.65/live1.sdp
roles:
- record
hwaccel_args: -c:v h264_qsv
rtmp:
enabled: false
detect:
width: 480
height: 272
fps: 7
motion:
mask:
- 265,87,311,92,319,55,269,51
objects:
track:
- person
- bicycle
- dog
- cat
- car
snapshots:
enabled: true
bounding_box: true
Garage:
ffmpeg:
inputs:
- path: rtsp://xxx:xxx@192.168.1.209:554/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif
roles:
- detect
- path: rtsp://xxx:xxx@192.168.1.209/cam/realmonitor?channel=1&subtype=00&authbasic=YWRtaW46TDI4NUYxNjQ=
roles:
- record
hwaccel_args: -c:v h264_qsv
rtmp:
enabled: false
detect:
width: 640
height: 480
fps: 15
objects:
track:
- person
- bicycle
- dog
- cat
- car
snapshots:
enabled: true
bounding_box: true
Giardino:
ffmpeg:
inputs:
- path: rtsp://xxx:xxx@192.168.1.77:554/h264Preview_01_sub
roles:
- detect
- path: rtsp://xxx:xxx@192.168.1.77:554/h264Preview_01_main
roles:
- record
rtmp:
enabled: false
detect:
width: 1536
height: 576
fps: 30
motion:
mask:
- 0,0,388,0,0,504
- 1536,0,1536,322,1384,440,1067,0
objects:
track:
- person
- dog
- cat
- car
snapshots:
enabled: true
bounding_box: true
Sala:
ffmpeg:
inputs:
- path: rtsp://xxx:xxx@192.168.1.64/Streaming/Channels/2
roles:
- detect
- path: rtsp://xxx:xxx@192.168.1.64/HighResolutionVideo
roles:
- record
hwaccel_args: -c:v h264_qsv
rtmp:
enabled: false
detect:
width: 352
height: 240
fps: 15
objects:
track:
- person
- dog
- cat
snapshots:
enabled: true
bounding_box: true
birdseye:
enabled: True
mode: continuous
detectors:
coral:
type: edgetpu
device: usb
record:
enabled: True
events:
retain:
default: 10
database:
path: /media/frigate/db/frigate.db
Relevant log output
nothing
Frigate stats
No response
Operating system
Proxmox
Install method
Docker Compose
Coral version
USB
Any other information that may be helpful
No response
Issue Analytics
- State:
- Created 10 months ago
- Comments:6 (2 by maintainers)
Top Results From Across the Web
Troubleshoot familiar face detection - Google Nest Help
A familiar face has a missing or incorrect name · Open the Nest app Nest app . · Tap Settings Nest settings icon...
Read more >Protect your PC from potentially unwanted applications
To configure potentially unwanted app blocking go to Start > Settings > Update & Security > Windows Security > App & browser control...
Read more >About privacy and Location Services in iOS and iPadOS
Learn how privacy settings and Location Services help protect your personal information on your iPhone, iPad, and iPod touch.
Read more >How to Avoid Accidental Motion Triggers on Your Ring Doorbell
The Problem: Too Many Motion Alerts · Solution 1: Configure the Motion Detection Frequency · Solution 2: Set a Schedule to Stop Motion...
Read more >Advanced Motion Detection in Ring Devices - Ring Help
Ring video doorbells use Advanced Motion Detection, which includes Person and ... fix the problem, check the notification settings on your mobile device....
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
A higher detect resolution could help here too.
It’s not that simple. Not only would you be decoding both streams which is a lot of work, the decoding of different resolutions can have differing delay introduced. The streams from the cameras themselves are also often somewhat out of sync.
This is of course why the docs recommend cameras with configurable sub streams.
If you don’t care about cpu usage then just use the high res stream and set the resolution in
detect -> width / height
to downsize it to 1080p.