A Region Proposal Network, or RPN, 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. RPN and algorithms like Fast R-CNN can be merged into a single network by sharing their convolutional features - using the recently popular terminology of neural networks with attention mechanisms, the RPN component tells the unified network where to look.
RPNs are designed to efficiently predict region proposals with a wide range of scales and aspect ratios. RPNs use anchor boxes that serve as references at multiple scales and aspect ratios. The scheme can be thought of as a pyramid of regression references, which avoids enumerating images or filters of multiple scales or aspect ratios.
Source: Faster R-CNN: Towards Real-Time Object Detection with Region Proposal NetworksPaper | Code | Results | Date | Stars |
---|
Task | Papers | Share |
---|---|---|
Object Detection | 222 | 18.75% |
Object | 121 | 10.22% |
Semantic Segmentation | 111 | 9.38% |
Instance Segmentation | 98 | 8.28% |
Image Classification | 20 | 1.69% |
Classification | 17 | 1.44% |
Decoder | 14 | 1.18% |
Text Classification | 13 | 1.10% |
Image Segmentation | 12 | 1.01% |
Component | Type |
|
---|---|---|
🤖 No Components Found | You can add them if they exist; e.g. Mask R-CNN uses RoIAlign |