Wepik Advancing Object Detection Unveiling The Potential For Precision and Efficiency 202401081226449LyU
Wepik Advancing Object Detection Unveiling The Potential For Precision and Efficiency 202401081226449LyU
Outline
• Introduction
• Traditional approaches of Object Detection
• Haar Cascades
• HOG
• Modern approaches of Object Detection
• YOLO
• Faster R-CNN
Introduction
• Traditional Techniques
• Haar Cascades
• HOG
• Modern(Advanced) Techniques
• YOLO
• Faster R-CNN
Haar Cascades Technique
• YOLO works by dividing the picture or video into small squares. Then it
uses the network of math operations to guess what kind of thing is in
each square and how big it is. It also guesses how sure it is about its
guess. Then it removes the guesses that are not very sure or overlap
with other guesses. This way, it keeps the best guesses for the things in
the picture or video.
Advantages
• Fast: It can process images at 45 FPS, which is much faster than
other object detection systems
• Accurate: It has high detection accuracy and few background
errors
• Generalizable: It can learn general representations of objects and
can detect different kinds of objects, such as faces, cars, animals,
or text
Limitations
• Low resolution: It resizes the input image to 448*448, which may lose
some details and affect the detection quality
• Poor localization: It divides the image into a 7*7 grid, which limits the
number of objects it can detect in a cell and the accuracy of the bounding
boxes
• Sensitive to orientation: It is not invariant to object orientation, which
means it may fail to detect objects that are rotated or tilted
Faster R-CNN