Spaces:
Runtime error
Runtime error
File size: 470 Bytes
3bd4b4e b99db33 3bd4b4e |
1 2 3 4 5 6 |
For example, a FasterRCNN approach uses the following steps:
- the image features are given out by a FPN (Feature Pyramid Net) over a ResNet backbone, and
- then a RPN (Regision Proposal Network) layer detects proposals in those features, and
- then the ROI (Region of Interest) heads get the box proposals in the original image, and
- then the boxes are selected using a NMS (Non-max suppression),
- and then the features for selected boxes are used as visual features. |