Dec 8, 2023
5 stories
3 saves
Proposes a multi-stage approach where detectors are trained with progressively higher IoU thresholds, improving selectivity against false positives.
Extends Faster R-CNN to solve instance segmentation tasks, by adding a branch for predicting an object mask in parallel with the existing branch.
A region proposal network (RPN) and a Fast R-CNN detector, collaboratively predict object regions by sharing convolutional features.
Processes entire image through CNN, employs RoI Pooling to extract feature vectors from ROIs, followed by classification and BBox regression.
Feb 7, 2023
Uses selective search for region proposals, CNNs for feature extraction, SVM for classification followed by box offset regression.