Eliminating duplicate object detections from a video source #2344
Answered
by
dh031200
Ziad-Assem
asked this question in
Q&A
-
Hello! I currently have a custom model that can detect license plates. It works really well on images but when I use a video source, it keeps detecting the same image over 10 times. I tried adding the argument iou and conf to try and reduce the duplicates but to no avail. Any suggestions? Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
dh031200
May 3, 2023
Replies: 1 comment 4 replies
-
@Ziad-Assem |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
Ziad-Assem
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@Ziad-Assem
How about saving an image when an object is tracked over a few frames?
I wrote the following code using yolov8's object tracking.
Duplicate images of the same object can be suppressed.
dh031200/ObjectExtrator