Detecting objects other than "person"?
See original GitHub issueI know it’s possible to feed in another model via the docker-compose
file, but I’m wondering if it would be possible to generalize the code a bit to allow perhaps a config entry or something for detection of other objects/faces with other models and still give a best_<object>.jpg
image. I’d love to be able to use your code with the faces model, which doesn’t have a labels file either.
Issue Analytics
- State:
- Created 4 years ago
- Reactions:3
- Comments:5
Top Results From Across the Web
Object Detection and Person Detection in Computer Vision
Object detection is a popular computer vision technique that works to identify, locate, and label specific objects within the image or video.
Read more >Object Detection in 2022: The Definitive Guide - viso.ai
Person detection is a variant of object detection used to detect a primary class “person” in images or video frames. Detecting people in...
Read more >7 Types of Sensors for Object Detection - Keller Technology
The seven most common types of object sensing technologies include electro-mechanical, pneumatic, capacitive and photoelectric. Whether detecting the presence ...
Read more >Object Detection Guide - Fritz AI
Object detection is a computer vision technique that works to identify and locate objects within an image or video. Specifically, object detection draws ......
Read more >5 Significant Object Detection Challenges and Solutions
Classifying and finding an unknown number of individual objects within an image, however, was considered an extremely difficult problem only a ...
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
Hmm, maybe you should spend some time fixing the holes in your walls first!?! 😉
detecting objects is easy, “static” objects (as my own car in driveway) is problem. there must be a way to detect and alarm when car is detected, but if it does not move, no more alarms should trigger.
for me detection find lots of bogus objects so i made simple filter:
i have object_filter in use to limit detections to cars and persons per region so i can create region that does not contain any “static” cars but it’s not ideal
frigate/video.py: 290 if region[‘object_filter’] and obj[‘name’] not in region[‘object_filter’]: 291 continue