question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Detecting objects other than "person"?

See original GitHub issue

I 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:closed
  • Created 4 years ago
  • Reactions:3
  • Comments:5

github_iconTop GitHub Comments

2reactions
scstrauscommented, Sep 26, 2019

I could use this to detect how often some animals get into my house and what were they.

Hmm, maybe you should spend some time fixing the holes in your walls first!?! 😉

2reactions
miikkajocommented, Sep 26, 2019

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

regions:
  - size: 480
    x_offset: 0
    y_offset: 0
    min_person_area: 500
    threshold: 0.7
    object_filter: ['person','car']

frigate/video.py: 290 if region[‘object_filter’] and obj[‘name’] not in region[‘object_filter’]: 291 continue

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found