Selective Search for Object Recognition
Authors: J.R.R. Uijlings, K.E.A. van de Sande, T. Gevers, and A.W.M. Smeulders Venue: Tech Report / IJCV 2012 Note that I did not read this paper in it's entirety, but mainly tried to focus on the ideas presented in this paper. Selective Search image segmentation uses a hierarchical clustering approach to segment the image into different related objects, motivated by the intuitive hierarchical relationship images have. When clustering, the algorithm takes into account the color similiarity of regions as well as texture similarity. For color similarity, they make use of multiple color scales such as RGB, grayscale, and HSV which each provide different properties. For texture measurements, they use SIFT (Scale-invarient feature transform). To analyze the hierarchical component, they compare there approach to flat clustering approach, Efficient Graph-based Image Segmentation. To analyze their overall performance, they compare to many other approaches, and do so rather exhaustivel...