Object Detection
Object Detection
Presenter
Contents
1. Object Detection
2. Faster R-CNN
3. YOLO
4. SSD
Computer Vision Tasks
Object Detection
deer
cat
Object Detection as Classification
deer?
CNN cat?
background?
Object Detection as Classification
deer?
CNN cat?
background?
Object Detection as Classification
deer?
CNN cat?
background?
Object Detection as Classification
with Sliding Window
deer?
CNN cat?
background?
Object Detection as Classification
with Box Proposals
Box Proposal Method – SS: Selective Search
Segmentation As
Selective Search for
Object Recognition. van
de Sande et al. ICCV
2011
R-CNN
Fast-RCNN
Faster-RCNN
YOLO- You Only Look Once
Idea: No bounding
box proposals.
Predict a class and a
box for every location
in a grid.
19
YOLO v2
20
YOLO v2
Linear
Image 2 FC reg
CNN
448 x 448 x 3
7 x 7 x 1024 4096 7 x 7 x 30
YOLO v1
21
YOLO v2
2 x Conv3, 1 x Conv1,
Image 1024 125
CNN
448 x 448 x 3
YOLO v2
22
YOLO v2
23
YOLO v2
24
YOLO v3 - Feature Pyramid
C1 C2 C3 C4 C5 C6
C6 P5 + U6
Idea: Similar to YOLO, but denser grid map, multiscale grid maps. +
Data augmentation + Hard negative mining + Other design choices
in the network. Liu et al. ECCV 2016.
SSD: Single Shot Detector