Object Detection + Deep Learning

Slides:



Advertisements
Similar presentations
Rich feature Hierarchies for Accurate object detection and semantic segmentation Ross Girshick, Jeff Donahue, Trevor Darrell, Jitandra Malik (UC Berkeley)
Advertisements

Lecture 6: Classification & Localization
Efficient Large-Scale Structured Learning
Large Scale Visual Recognition Challenge (ILSVRC) 2013: Detection spotlights.
DeepID-Net: deformable deep convolutional neural network for generic object detection Wanli Ouyang, Ping Luo, Xingyu Zeng, Shi Qiu, Yonglong Tian, Hongsheng.
Large-Scale Object Recognition with Weak Supervision
R-CNN By Zhang Liliang.
Spatial Pyramid Pooling in Deep Convolutional
On the Object Proposal Presented by Yao Lu
From R-CNN to Fast R-CNN
Generic object detection with deformable part-based models
From Edges to Objects Piotr Dollár and Larry Zitnick.
Kuan-Chuan Peng Tsuhan Chen
Object Bank Presenter : Liu Changyu Advisor : Prof. Alex Hauptmann Interest : Multimedia Analysis April 4 th, 2013.
Generic Object Detection
Detection, Segmentation and Fine-grained Localization
Learning Collections of Parts for Object Recognition and Transfer Learning University of Illinois at Urbana- Champaign.
Object detection, deep learning, and R-CNNs
Fully Convolutional Networks for Semantic Segmentation
Deep Convolutional Nets
CS 1699: Intro to Computer Vision Detection II: Deformable Part Models Prof. Adriana Kovashka University of Pittsburgh November 12, 2015.
Ross Girshick, Jeff Donahue, Trevor Darrell, Jitendra Malik Rich Feature Hierarchies for Accurate Object Detection and Semantic Segmentation.
Feedforward semantic segmentation with zoom-out features
Cascade Region Regression for Robust Object Detection
Fine-grained Fine-grained Recognition( 细粒度分类 ) 沈志强.
Rich feature hierarchies for accurate object detection and semantic segmentation 2014 IEEE Conference on Computer Vision and Pattern Recognition Ross Girshick,
Spatial Localization and Detection
Cancer Metastases Classification in Histological Whole Slide Images
When deep learning meets object detection: Introduction to two technologies: SSD and YOLO Wenchi Ma.
Recent developments in object detection
CS 4501: Introduction to Computer Vision Object Localization, Detection, Semantic Segmentation Connelly Barnes Some slides from Fei-Fei Li / Andrej Karpathy.
Faster R-CNN – Concepts
Object Detection based on Segment Masks
Object detection with deformable part-based models
Krishna Kumar Singh, Yong Jae Lee University of California, Davis
Regularizing Face Verification Nets To Discrete-Valued Pain Regression
YOLO9000:Better, Faster, Stronger
Part-Based Room Categorization for Household Service Robots
Object detection as supervised classification
R-CNN region By Ilia Iofedov 11/11/2018 BGU, DNN course 2016.
Object detection.
A Convolutional Neural Network Cascade For Face Detection
Computer Vision James Hays
Neural network systems
Image Classification.
Rob Fergus Computer Vision
Figure 4. Testing minimal configurations with existing models for spatiotemporal recognition. (A-B) A binary classifier is trained to separate a positive.
Jia-Bin Huang Virginia Tech ECE 6554 Advanced Computer Vision
SAS Deep Learning Object Detection, Keypoint Detection
CornerNet: Detecting Objects as Paired Keypoints
Object Detection Creation from Scratch Samsung R&D Institute Ukraine
Faster R-CNN By Anthony Martinez.
YOLO-LITE: A Real-Time Object Detection Web Implementation
Outline Background Motivation Proposed Model Experimental Results
Object Tracking: Comparison of
RCNN, Fast-RCNN, Faster-RCNN
Iterative Crowd Counting
Zeroshot Learning Mun Jonghwan.
边缘检测年度进展概述 Ming-Ming Cheng Media Computing Lab, Nankai University
Heterogeneous convolutional neural networks for visual recognition
Convolutional Neural Network
Course Recap and What’s Next?
Meta Learning (Part 2): Gradient Descent as LSTM
Human-object interaction
Rotational Rectification Network (R2N):
Motivation State-of-the-art two-stage instance segmentation methods depend heavily on feature localization to produce masks.
Object Detection Implementations
End-to-End Facial Alignment and Recognition
Volodymyr Bobyr Supervised by Aayushjungbahadur Rana
Van-Thanh Hoang May 11, 2019 Improving Object Localization with Fitness NMS and Bounded IoU Loss Lachlan Tychsen-Smith, Lars.
Presentation transcript:

Object Detection + Deep Learning

Last Class Convolutional (Neural) Networks Neural Network Architectures Imagenet

Today’s Class Object Detection The RCNN Object Detector (2014) The Fast RCNN Object Detector (2015) The Faster RCNN Object Detector (2016) The YOLO Object Detector (2016) The SSD Object Detector (2016) Mask-RCNN (2017)

Object Detection cat deer

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  

RCNN https://people.eecs.berkeley.edu/~rbg/papers/r-cnn-cvpr.pdf Rich feature hierarchies for accurate object detection and semantic segmentation. Girshick et al. CVPR 2014.

Fast-RCNN Idea: No need to recompute features for every box independently, Regress refined bounding box coordinates. https://arxiv.org/abs/1504.08083 Fast R-CNN. Girshick. ICCV 2015. https://github.com/sunshineatnoon/Paper-Collection/blob/master/Fast-RCNN.md

Faster-RCNN Idea: Integrate the Bounding Box Proposals as part of the CNN predictions https://arxiv.org/abs/1506.01497 Ren et al. NIPS 2015.

YOLO- You Only Look Once Idea: No bounding box proposals. Predict a class and a box for every location in a grid. https://arxiv.org/abs/1506.02640 Redmon et al. CVPR 2016.

YOLO- You Only Look Once Divide the image into 7x7 cells. Each cell trains a detector. The detector needs to predict the object’s class distributions. The detector has 2 bounding-box predictors to predict bounding-boxes and confidence scores. https://arxiv.org/abs/1506.02640 Redmon et al. CVPR 2016.

SSD: Single Shot Detector 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.

Questions?