Selective Search is a region proposal algorithm for object detection tasks. It starts by over-segmenting the image based on intensity of the pixels using a graph-based segmentation method by Felzenszwalb and Huttenlocher. Selective Search then takes these oversegments as initial input and performs the following steps
At each iteration, larger segments are formed and added to the list of region proposals. Hence we create region proposals from smaller segments to larger segments in a bottom-up approach. This is what we mean by computing “hierarchical” segmentations using Felzenszwalb and Huttenlocher’s oversegments.
Paper | Code | Results | Date | Stars |
---|
Task | Papers | Share |
---|---|---|
Object | 11 | 18.33% |
Object Detection | 11 | 18.33% |
Object Localization | 2 | 3.33% |
Autonomous Driving | 2 | 3.33% |
Diversity | 2 | 3.33% |
Semantic Segmentation | 2 | 3.33% |
Few-Shot Object Detection | 2 | 3.33% |
Instance Segmentation | 2 | 3.33% |
Weakly-Supervised Object Localization | 1 | 1.67% |
Component | Type |
|
---|---|---|
🤖 No Components Found | You can add them if they exist; e.g. Mask R-CNN uses RoIAlign |