R-CNN
Last updated
Last updated
Compared to the generic traditional pipeline, the feature extraction is performed using a CNN. This way:
Selective Search produces 2,000 region proposals
The CNN model extracts a 4,096 vector for each region.
An SVM classifies the region into background or object classes.
Drawbacks:
Multi-stage model -> cannot be trained end-2-end.
Uses disk caching of the extracted features -> exponential growth of disk usage.
Selective Search is slow.
The CNN is run on each independent region -> very slow