Object Detection Models

Faster R-CNN is an object detection model that improves on Fast R-CNN by utilising a region proposal network (RPN) with the CNN model. The RPN shares full-image convolutional features with the detection network, enabling nearly cost-free region proposals. It is a fully convolutional network that simultaneously predicts object bounds and objectness scores at each position. The RPN is trained end-to-end to generate high-quality region proposals, which are used by Fast R-CNN for detection. RPN and Fast R-CNN are merged into a single network by sharing their convolutional features: the RPN component tells the unified network where to look.

As a whole, Faster R-CNN consists of two modules. The first module is a deep fully convolutional network that proposes regions, and the second module is the Fast R-CNN detector that uses the proposed regions.

Source: Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks

Papers


Paper Code Results Date Stars

Tasks


Task Papers Share
Object Detection 295 37.48%
General Classification 23 2.92%
Pedestrian Detection 17 2.16%
Autonomous Driving 14 1.78%
Classification 13 1.65%
Object Recognition 11 1.40%
Few-Shot Object Detection 9 1.14%
Decoder 8 1.02%
Pose Estimation 8 1.02%

Categories