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 291 37.79%
General Classification 23 2.99%
Pedestrian Detection 17 2.21%
Autonomous Driving 14 1.82%
Classification 13 1.69%
Object Recognition 11 1.43%
Few-Shot Object Detection 9 1.17%
Pose Estimation 8 1.04%
Management 8 1.04%

Categories