Category-level localization Cordelia Schmid Recognition - - PowerPoint PPT Presentation

category level localization
SMART_READER_LITE
LIVE PREVIEW

Category-level localization Cordelia Schmid Recognition - - PowerPoint PPT Presentation

Category-level localization Cordelia Schmid Recognition Classification Object present/absent in an image Often presence of a significant amount of background clutter Localization / Detection Localize object within the


slide-1
SLIDE 1

Category-level localization

Cordelia Schmid

slide-2
SLIDE 2

Recognition

  • Classification

– Object present/absent in an image – Often presence of a significant amount of background clutter

  • Localization / Detection

– Localize object within the frame – Bounding box or pixel- level segmentation

slide-3
SLIDE 3

Pixel-level object classification

slide-4
SLIDE 4

Difficulties

  • Intra-class variations
  • Scale and viewpoint change
  • Multiple aspects of categories
slide-5
SLIDE 5

Approaches

  • Intra-class variation

=> Modeling of the variations, mainly by learning from a large dataset

  • Scale + limited viewpoints changes

=> multi-scale approach

  • Multiple aspects of categories

=> separate detectors for each aspect, front/profile face, build an approximate 3D “category” model => high capacity classifiers, i.e. Fisher vector, CNNs

slide-6
SLIDE 6

Outline

  • 1. Sliding window detectors
  • 2. Features and adding spatial information
  • 3. Histogram of Oriented Gradients (HOG)
  • 4. State of the art algorithms
  • 5. PASCAL VOC and MSR Coco
slide-7
SLIDE 7

Yes, a car No, not a car

Sliding window detector

  • Basic component: binary classifier

Car/non-car Classifier

slide-8
SLIDE 8

Sliding window detector

  • Detect objects in clutter by search

Car/non-car Classifier

  • Sliding window: exhaustive search over position and scale
slide-9
SLIDE 9

Sliding window detector

  • Detect objects in clutter by search

Car/non-car Classifier

  • Sliding window: exhaustive search over position and scale
slide-10
SLIDE 10

Window (Image) Classification

  • Features hand-crafted or learnt
  • Classifier learnt from data

Feature Extraction

    

Classifier Training Data Car/Non-car

slide-11
SLIDE 11

Problems with sliding windows …

  • aspect ratio
  • granularity (finite grid)
  • partial occlusion
  • multiple responses
slide-12
SLIDE 12

Outline

  • 1. Sliding window detectors
  • 2. Features and adding spatial information
  • 3. Histogram of Oriented Gradients (HOG)
  • 4. State of the art algorithms
  • 5. PASCAL VOC and MSR Coco
slide-13
SLIDE 13

BOW + Spatial pyramids

Bag of Words

         

Feature Vector Start from BoW for region of interest (ROI)

  • no spatial information recorded
  • sliding window detector
slide-14
SLIDE 14

Adding Spatial Information to Bag of Words

Bag of Words

         

Concatenate Feature Vector

Keeps fixed length feature vector for a window

slide-15
SLIDE 15

Spatial Pyramid – represent correspondence

                    

1 BoW 4 BoW 16 BoW

slide-16
SLIDE 16

Outline

  • 1. Sliding window detectors
  • 2. Features and adding spatial information
  • 3. Histogram of Oriented Gradients + linear SVM classifier
  • 4. State of the art algorithms
  • 5. PASCAL VOC and MSR Coco
slide-17
SLIDE 17

Feature: Histogram of Oriented Gradients (HOG)

image dominant direction HOG frequency

  • rientation
  • tile 64 x 128 pixel window into 8 x 8 pixel cells
  • each cell represented by histogram over 8
  • rientation bins (i.e. angles in range 0-180 degrees)
slide-18
SLIDE 18

Histogram of Oriented Gradients (HOG) continued

  • Adds a second level of overlapping spatial bins re-

normalizing orientation histograms over a larger spatial area

  • Feature vector dimension (approx) = 16 x 8 (for tiling) x 8

(orientations) x 4 (for blocks) = 4096

slide-19
SLIDE 19

Window (Image) Classification

  • HOG Features
  • Linear SVM classifier

Feature Extraction

    

Classifier Training Data pedestrian/Non-pedestrian

slide-20
SLIDE 20

HOG features

slide-21
SLIDE 21

Averaged examples

slide-22
SLIDE 22

Learned model

average over positive training data

f(x)  wTx  b

slide-23
SLIDE 23

Dalal and Triggs, CVPR 2005

slide-24
SLIDE 24
  • Unlike training an image classifier, there are a (virtually)

infinite number of possible negative windows

  • Training (learning) generally proceeds in three distinct

stages:

  • 1. Bootstrapping: learn an initial window classifier from

positives and random negatives, jittering of positives

  • 2. Hard negatives: use the initial window classifier for

detection on the training images (inference) and identify false positives with a high score

  • 3. Retraining: use the hard negatives as additional

training data

Training a sliding window detector

slide-25
SLIDE 25

Crop and resize

  • Jitter annotation to increase

the set of positive trainingsamples

  • +

Training: “Jittering” of positive samples

slide-26
SLIDE 26

Hard negative mining – why?

  • Object detection is inherently asymmetric: much more

“non-object” than “object” data

  • Classifier needs to have very low false positive rate
  • Non-object category is very complex – need lots of data
slide-27
SLIDE 27

Hard negative mining + retraining

  • 1. Pick negative training

set at random

  • 2. Train classifier
  • 3. Run on training data
  • 4. Add false positives to

training set

  • 5. Repeat from 2
  • Collect a finite but diverse set of non-object windows
  • Force classifier to concentrate on hard negative examples
  • For some classifiers can ensure equivalence to training on

entire data set

slide-28
SLIDE 28
  • Scanning-window detectors typically result in

multiple responses for the same object

Conf=.9

Test: Non-maximum suppression (NMS)

  • To remove multiple responses, a simple greedy procedure

called “Non-maximum suppression” is applied:

1. Sort all detections by detector confidence 2. Choose most confident detection di; remove all dj s.t. overlap(di,dj)>T 3. Repeat Step 2. until convergence NMS:

slide-29
SLIDE 29

Evaluating a detector

Test image (previously unseen)

slide-30
SLIDE 30

First detection ...

‘person’ detector predictions

0.9

slide-31
SLIDE 31

Second detection ...

0.9 0.6

‘person’ detector predictions

slide-32
SLIDE 32

Third detection ...

0.9 0.6 0.2

‘person’ detector predictions

slide-33
SLIDE 33

Compare to ground truth

ground truth ‘person’ boxes

0.9 0.6 0.2

‘person’ detector predictions

slide-34
SLIDE 34

Sort by confidence

... ... ... ... ... ✓ ✓ ✓

0.9 0.8 0.6 0.5 0.2 0.1

true positive

(high overlap)

false positive

(no overlap, low overlap, or duplicate)

X X X

slide-35
SLIDE 35

Evaluation metric

... ... ... ... ...

0.9 0.8 0.6 0.5 0.2 0.1

✓ ✓ ✓

X X X

✓ ✓ + X

slide-36
SLIDE 36

Evaluation metric

Average Precision (AP) 0% is worst 100% is best mean AP over classes (mAP) ... ... ... ... ...

0.9 0.8 0.6 0.5 0.2 0.1

✓ ✓ ✓

X X X

slide-37
SLIDE 37

Outline

  • 1. Sliding window detectors
  • 2. Features and adding spatial information
  • 3. HOG + linear SVM classifier
  • 4. State of the art algorithms
  • 5. PASCAL VOC and MSR Coco
slide-38
SLIDE 38

HOG + SVM Object detector

  • Sliding-window detectors need to

classify 100K samples per image  speed matters

  • HOG + linear SVM is fast but too simple

Far from perfect. What can be improved?

  • 1. Reduce the search space 100K → ~1K windows

 Region proposals

  • 2. Use more complex features and classifiers

 CNN Approach:

slide-39
SLIDE 39

Merge two most similar regions based on S. 1.

  • 2. Update similarities between

and its neighbors. Go back to step 1. until the whole image is a single region. the new region 3.

[K. van de Sande, J. Uijlings, T. Gevers, and A. Smeulders, ICCV 2011]

Region proposals: Selective Search

slide-40
SLIDE 40

Take bounding boxes of all generated regions and treat them as possible object locations.

  • [K. van de Sande, J. Uijlings, T. Gevers, and A. Smeulders, ICCV 2011]

Region proposals: Selective Search

slide-41
SLIDE 41

[K. van de Sande, J. Uijlings, T. Gevers, and A. Smeulders, ICCV 2011]

Region proposals: Selective Search

slide-42
SLIDE 42

Selective Search: Comparison

[K. van de Sande, J. Uijlings, T. Gevers, and A. Smeulders, ICCV 2011]

slide-43
SLIDE 43

Selective search for object location [v.d.Sande et al. 11]

  • Select class-independent candidate image windows with segmentation

Guarantees ~95% Recall for any object class in Pascal VOC with only 1500 windows per image

  • Local features + bag-of-words
  • SVM classifier with histogram intersection kernel + hard negative mining
slide-44
SLIDE 44

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Lecture 8 - 1 Feb 2016

[ Girschick et al, “Rich feature hierarchies for accurate object detection and semantic segmentation”, CVPR 2014] Slide credit: Ross Girschick

Selective search regions with CNN features: R-CNN

slide-45
SLIDE 45

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Lecture 8 - 1 Feb 2016

R-CNN Training

Step 1: Train (or download) a classification model for ImageNet (AlexNet)

Image Convolution and Pooling Final conv feature map Fully-connected layers Class scores 1000 classes Softmax loss

Lecture 8 - 54

slide-46
SLIDE 46

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Lecture 8 - 1 Feb 2016

R-CNN Training

Step 2: Fine-tune model for detection

  • Instead of 1000 ImageNet classes, want 20 object classes + background
  • Throw away final fully-connected layer, reinitialize this layer from scratch
  • Keep training model using positive / negative regions from detection images

Image Convolution and Pooling Final conv feature map Fully-connected layers Class scores: 21 classes Softmax loss

Re-initialize this layer: was 4096 x 1000, now will be 4096 x 21

Lecture 8 - 55

slide-47
SLIDE 47

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Lecture 8 - 1 Feb 2016

R-CNN Training

Image

Step 3: Extract features

  • Extract region proposals for all images
  • For each region: warp to CNN input size, run forward through CNN, save pool5

features to disk

  • Have a big hard drive: features are ~200GB for PASCAL dataset!

Convolution and Pooling pool5 features Region Proposals Crop + Warp Forward pass

Lecture 8 - 56

Save to disk

slide-48
SLIDE 48

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Lecture 8 - 1 Feb 2016

R-CNN Training

Step 4: Train one binary SVM per class to classify region features

Positive samples for cat SVM Negative samples for cat SVM

Lecture 8 - 57

Training image regions Cached region features

slide-49
SLIDE 49

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Lecture 8 - 1 Feb 2016

R-CNN Training

Step 5 (bbox regression): For each class, train a linear regression model to map from cached features to offsets to GT boxes to make up for “slightly wrong” proposals

Training image regions Cached region features Regression targets (dx, dy, dw, dh) Normalized coordinates (0, 0, 0, 0) Proposal is good (.25, 0, 0, 0) Proposal too far to left (0, 0, -0.125, 0) Proposal too wide

Lecture 8 - 59

slide-50
SLIDE 50

R-CNN Results

Regionlets for generic object detection, Wang et al., ICCV 2013 Object detection with discriminatively trained part based models, Felzenszwalb et al., PAMI 2011

slide-51
SLIDE 51

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Lecture 8 - 1 Feb 2016

R-CNN Results

Big improvement compared to pre-CNN methods

Lecture 8 - 63

slide-52
SLIDE 52

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Lecture 8 - 1 Feb 2016

R-CNN Results

Bounding box regression helps a bit

Lecture 8 - 64

slide-53
SLIDE 53

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Lecture 8 - 1 Feb 2016

R-CNN Results

Features from a deeper network help a lot

Lecture 8 - 65

slide-54
SLIDE 54

Region-based Convolutional Networks (R-CNNs)

0% 10% 20% 30% 40% 50% 60% 70%

2006 2007 2008 2009 2010 2011 2012 2013 2014 2015

mean Average Precision (mAP) year

DPM DPM, HOG+ BOW DPM, MKL DPM++ DPM++, MKL, Selective Search Selective Search, DPM++, MKL 41% 41% 37% 28% 23% 17%

53% 53% 62% 62% R‐CNN CNN v1 v1 R‐CNN CNN v2 v2

[R‐CNN. Girshick et al. CVPR 2014]

Re ResNet 76% 76%

slide-55
SLIDE 55

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Lecture 8 - 1 Feb 2016

R-CNN Problems

Lecture 8 - 66 1 Feb 2016

Fei-Fei Li & Andrej Karpathy & Justin Johnson

  • 1. Slow at test-time: need to run full forward pass of

CNN for each region proposal

  • 2. SVMs and regressors are post-hoc: CNN features

not updated in response to SVMs and regressors

  • 3. Complex multistage training pipeline
slide-56
SLIDE 56

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Lecture 8 - 1 Feb 2016

[ Girschick, “Fast R-CNN”, ICCV 2015]

1 Feb 2016

slide-57
SLIDE 57

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Lecture 8 - 1 Feb 2016

R-CNN Problem #1: Slow at test-time due to independent forward passes of the CNN Solution: Share computation

  • f convolutional

layers between proposals for an image

Lecture 8 - 68 1 Feb 2016

Fei-Fei Li & Andrej Karpathy & Justin Johnson

[ Girschick, “Fast R-CNN”, ICCV 2015]

slide-58
SLIDE 58

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Lecture 8 - 1 Feb 2016

R-CNN Problem #2: Post-hoc training: CNN not updated in response to final classifiers and regressors

Lecture 8 - 69 1 Feb 2016

Fei-Fei Li & Andrej Karpathy & Justin Johnson

R-CNN Problem #3: Complex training pipeline Solution: Just train the whole system end-to-end all at once!

Slide credit: Ross Girschick

slide-59
SLIDE 59

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Lecture 8 - 1 Feb 2016

Fast R-CNN: Region of Interest Pooling

Hi-res input image: 3 x 800 x 600 with region proposal Convolution and Pooling Hi-res conv features: C x H x W with region proposal Fully-connected layers

Lecture 8 - 70 1 Feb 2016

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Problem: Fully-connected layers expect low-res conv features: C x h x w

slide-60
SLIDE 60

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Lecture 8 - 1 Feb 2016

Fast R-CNN: Region of Interest Pooling

Hi-res input image: 3 x 800 x 600 with region proposal Convolution and Pooling Hi-res conv features: C x H x W with region proposal Fully-connected layers

Lecture 8 - 71 1 Feb 2016

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Project region proposal

  • nto conv feature map

Problem: Fully-connected layers expect low-res conv features: C x h x w

slide-61
SLIDE 61

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Lecture 8 - 1 Feb 2016

Fast R-CNN: Region of Interest Pooling

Hi-res input image: 3 x 800 x 600 with region proposal Convolution and Pooling Hi-res conv features: C x H x W with region proposal Fully-connected layers Problem: Fully-connected layers expect low-res conv features: C x h x w Divide projected region into h x w grid

Lecture 8 - 72 1 Feb 2016

Fei-Fei Li & Andrej Karpathy & Justin Johnson

slide-62
SLIDE 62

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Lecture 8 - 1 Feb 2016

Fast R-CNN: Region of Interest Pooling

Hi-res input image: 3 x 800 x 600 with region proposal Convolution and Pooling Hi-res conv features: C x H x W with region proposal Fully-connected layers Max-pool within each grid cell RoI conv features: C x h x w for region proposal

Lecture 8 - 73 1 Feb 2016

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Fully-connected layers expect low-res conv features: C x h x w

slide-63
SLIDE 63

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Lecture 8 - 1 Feb 2016

Fast R-CNN: Region of Interest Pooling

Hi-res input image: 3 x 800 x 600 with region proposal Convolution and Pooling Hi-res conv features: C x H x W with region proposal Fully-connected layers Can back propagate similar to max pooling RoI conv features: C x h x w for region proposal

Lecture 8 - 74 1 Feb 2016

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Fully-connected layers expect low-res conv features: C x h x w

slide-64
SLIDE 64

Fast R-CNN: Region of Interest Pooling

Hi-res input image: 3 x 800 x 600 with region proposal Convolution and Pooling Hi-res conv features: C x H x W with region proposal Fully-connected layers Can back propagate similar to max pooling RoI conv features: C x h x w for region proposal

Lecture 8 - 74 1 Feb 2016

Fully-connected layers expect low-res conv features: C x h x w

Multi-task loss:

Classification: Localization:

slide-65
SLIDE 65

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Lecture 8 - 1 Feb 2016

Fast R-CNN Results

Using VGG-16 CNN on Pascal VOC 2007 dataset

Lecture 8 - 75 1 Feb 2016

Fei-Fei Li & Andrej Karpathy & Justin Johnson R-CNN Fast R-CNN Training Time: 84 hours 9.5 hours (Speedup) 1x 8.8x Faster!

slide-66
SLIDE 66

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Lecture 8 - 1 Feb 2016

Fast R-CNN Results

Using VGG-16 CNN on Pascal VOC 2007 dataset

Lecture 8 - 76 1 Feb 2016

Fei-Fei Li & Andrej Karpathy & Justin Johnson R-CNN Fast R-CNN Training Time: 84 hours 9.5 hours (Speedup) 1x 8.8x Test time per image 47 seconds 0.32 seconds (Speedup) 1x 146x Faster! FASTER!

slide-67
SLIDE 67

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Lecture 8 - 1 Feb 2016

Fast R-CNN Results

Using VGG-16 CNN on Pascal VOC 2007 dataset

Lecture 8 - 77 1 Feb 2016

Fei-Fei Li & Andrej Karpathy & Justin Johnson R-CNN Fast R-CNN Training Time: 84 hours 9.5 hours (Speedup) 1x 8.8x Test time per image 47 seconds 0.32 seconds (Speedup) 1x 146x mAP (VOC 2007) 66.0 66.9 Faster! FASTER! Better!

slide-68
SLIDE 68

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Lecture 8 - 1 Feb 2016

Fast R-CNN Problem:

Lecture 8 - 78 1 Feb 2016

Fei-Fei Li & Andrej Karpathy & Justin Johnson R-CNN Fast R-CNN Test time per image 47 seconds 0.32 seconds (Speedup) 1x 146x Test time per image with Selective Search 50 seconds 2 seconds (Speedup) 1x 25x Test-time speeds don’t include region proposals

slide-69
SLIDE 69

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Lecture 8 - 1 Feb 2016

Fast R-CNN Problem Solution:

Lecture 8 - 79 1 Feb 2016

Fei-Fei Li & Andrej Karpathy & Justin Johnson R-CNN Fast R-CNN Test time per image 47 seconds 0.32 seconds (Speedup) 1x 146x Test time per image with Selective Search 50 seconds 2 seconds (Speedup) 1x 25x Test-time speeds don’t include region proposals Just make the CNN do region proposals too!

slide-70
SLIDE 70

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Lecture 8 - 1 Feb 2016

Faster R-CNN:

Insert a Region Proposal Network (RPN) after the last convolutional layer RPN trained to produce region proposals directly; no need for external region proposals! After RPN, use RoI Pooling and an upstream classifier and bbox regressor just like Fast R-CNN

Lecture 8 - 80 1 Feb 2016

Fei-Fei Li & Andrej Karpathy & Justin Johnson

Ren et al, “Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks”, NIPS 2015 Slide credit: Ross Girschick

Student presentation

slide-71
SLIDE 71

Outline

  • 1. Sliding window detectors
  • 2. Features and adding spatial information
  • 3. HOG + linear SVM classifier
  • 4. State of the art algorithms
  • 5. PASCAL VOC and MSR Coco
slide-72
SLIDE 72

PASCAL VOC dataset - Content

  • 20 classes: aeroplane, bicycle, boat, bottle, bus, car, cat,

chair, cow, dining table, dog, horse, motorbike, person, potted plant, sheep, train, TV

  • Real images downloaded from flickr, not filtered for “quality”
  • Complex scenes, scale, pose, lighting, occlusion, ...
slide-73
SLIDE 73

Annotation

  • Complete annotation of all objects

Truncated Object extends beyond BB Occluded Object is significantly

  • ccluded within BB

Pose Facing left Difficult Not scored in evaluation

slide-74
SLIDE 74

Examples

Aeroplane Bus Bicycle Bird Boat Bottle Car Cat Chair Cow

slide-75
SLIDE 75

Examples

Dining Table Potted Plant Dog Horse Motorbike Person Sheep Sofa Train TV/Monitor

slide-76
SLIDE 76

Detection: Evaluation of Bounding Boxes

  • Area of Overlap (AO) Measure

Ground truth Bgt Predicted Bp Bgt  Bp

> Threshold Detection if

50%

slide-77
SLIDE 77
  • Average Precision [TREC] averages precision over the entire range of

recall

0.2 0.4 0.6 0.8 1 0.2 0.4 0.6 0.8 1 recall precision

– A good score requires both high recall and high precision – Application-independent – Penalizes methods giving high precision but low recall AP Interpolated

Classification/Detection Evaluation

slide-78
SLIDE 78

From Pascal to COCO: Common objects in context dataset

[Lin et al., 2015] http://mscoco.org/

slide-79
SLIDE 79

Dataset statistics

  • 80 object classes
  • 80k training images
  • 40k validation images
  • 80k testing images
slide-80
SLIDE 80
slide-81
SLIDE 81
slide-82
SLIDE 82

Towards object instance segmentation

slide-83
SLIDE 83

Object Detection State-of-the-art: ResNet 101 + Faster R-CNN + some extras

[He et. al, “Deep Residual Learning for Image Recognition”, CVPR 2016]

CVPR 2016 Best Paper Award AP (%) for COCO validation set (80 object classes) AP (%) for Pascal VOC test sets (20 object classes)

slide-84
SLIDE 84

Summary of object detection

  • Basic idea: train a sliding window classifier from training data
  • Histogram of oriented gradients (HOG) features + linear SVM

– Jittering, hard negative mining improve accuracy

  • Region proposals using selective search
  • R-CNN: combine region proposals and CNN features
  • Fast(er) R-CNN: end-to-end training

– Region proposals and object classification can be trained jointly – Deeper networks (ResNet101) improve accuracy