Object Detection
With Adam, Shreyas, Rohan, Joon, and Sky
Table of Contents
01
03
02
04
Background
Data
What is Object Detection, and what are its possible applications?
To train/test our model, what data was used, and how did we use it?
Detection Models
Classification Models
What types of models are at our disposal, and which ones should we use?
How can we use more advanced models to make even better predictions?
01
Object Detection
(Background)
What is Object Detection?
02
Data
Our Data
Outputs
Inputs
Labels/Index
03
Sliding Windows
Sliding Window Algorithm
The sliding window algorithm takes cropped parts of the image of a fixed size and runs them through the image classifier mentioned before. However, it has some problems…
04
Classification Models
Our Methods of Classification
Neural Networks
Convolutional NN
Transfer Learning
Neural Networks
Terms:
ReLU (Rectified Linear Unit) Softmax
Goal:
Our Model
Results
Convolutional Neural Networks
How it works:
Our Model
Results
Transfer Learning
05
YOLO
YOLO
“You Only Look Once”
How it works: Divide up the image into grids -> Predict the bounding box along with what object is in the bounding box + the probability of object being present -> Label the boxes and the object inside the boxes
YOLO
Pros
Cons