Maximally stable extremal regions
From Wikipedia, the free encyclopedia
In computer vision, maximally stable extremal regions (MSER) are used as a method of blob detection in images. This technique was proposed by Matas et al. [2] to find correspondences between image elements from two images with different viewpoints. This method of extracting a comprehensive number of corresponding image elements contributes to the wide-baseline matching, and it has led to better stereo matching and object recognition algorithms.
Contents |
[edit] Terms and Definitions
Image I is a mapping . Extremal regions are well defined on images if:
- S is totally ordered (reflexive, antisymmetric and transitive binary relations exists.
- An adjacency relation is defined.
Region Q is a contiguous subset of D. (For each there is a sequence p,a1,a2,..,an,q and pAa1,aiAai + 1,anAq.
(Outer) Region Boundary , which means the boundary of of Q is the set of pixels adjacent to at least one pixel of Q but not belonging to Q.
Extremal Region is a region such that for all or I(p) < I(q), which means all the surrounding pixels have a higher or lower intensity that the region.
Maximally Stable Extremal Region Let Q1,..,Qi − 1,Qi,... be a sequence of nested extremal regions (). Extremal region Qi * is maximally stable if and only if has a local minimum at i * . is a parameter of the method.
The concept more simply can be explained by thresholding. All the pixels below a given threshold are 'black' and all those above or equal are 'white'. If we are shown a sequence of thresholded images It with frame t corresponding to threshold t, we would see first a white image, then 'black' spots corresponding to local intensity minima will appear then grow larger. These 'black' spots will eventually merge, until the whole thing is black. The set of all connected components in the sequence is the set of all maximal regions.
Image:Threshold1.png Image:Threshold2.png
[edit] Extremal regions
Extremal regions in this context have two important properties, that the set is closed under...
- continuous (and thus projective) transformation of image coordinates. This means it is affine invariant and it doesn't matter if the image is warped or skewed.
- monotonic transformation of image intensities. This means that photometric changes have no effect, so indoor versus outdoor lighting, and a sunny day versus cloudy or nighttime also have no effect.
[edit] Advantages of MSER
Because the regions are defined exclusively by the intensity function in the region and the outer border, this leads to many key characteristics of the regions which make them useful. Over a large range of thresholds, the local binarization is stable in certain regions, and have the properties listed below.
- Invariance to affine transformation of image intensities
- Covariance to adjacency preserving (continuous)
- Stability only regions whose support is nearly the same over a range of thresholds is selected.
- Multi-scale detection without any smoothing involved, both fine and large structure is detected.
Note however that detection of MSERs in a scale pyramid improves repeatability, and number of correspondences across scale changes. [4] - The set of all extremal regions can be enumerated in O(nloglogn), where n is the number of pixels in the image, which is almost linear.
[edit] Comparison to other region detectors
In Mikolajczyk et al. [1], six region detectors are studied Harris-affine, Hessian-affine, MSER, edge-based regions, intensity extrema, and salient regions. A summary of MSER performance in comparison to the other five follows.
- Region density - in comparison to the others MSER offers the most variety detecting about 2600 regions for a textured blur scene and 230 for a light changed. scene, and variety is generally considered to be good. Also MSER had a repeatability of 92% for this test.
- Region size - MSER tended to detect many small regions, versus large regions which are more likely to be occluded or to not cover a planar part of the scene. Though large regions may be slightly easier to match.
- Viewpoint change - MSER outperforms the five other region detectors in both the original images and those with repeated texture motifs.
- Scale change - Following Hessian-affine detector, MSER comes in second under a scale change and in-plane rotation.
- Blur - MSER proved to be the most sensitive to this type of change in image, which is the only area that this type of detection is lacking in.
Note however that this evaluation did not make use of multi-resolution detection, which has been shown to improve repeatability under blur. [4] - Light change - MSER showed the highest repeatability score for this type of scene, with all the other having good robustness as well.
MSER consistently resulted in the highest score through many tests, proving it to be a reliable region detector.[1]
[edit] Implementation
To enumerate the set of extremal regions , a very efficient algorithm is used, taking almost linear time for the number of pixels in the image. First the pixels are sorted by intensity. This would take O(n) time, using BINSORT. After sorting, pixels are marked in the image, and the list of growing and merging connected components and their areas is maintained using the union-find algorithm. This would take O(nloglogn) time. In practice these steps are very fast. During this process, the area of each connected component as a function of intensity is stored producing a data structure. A merge of two components is viewed as termination of existence of the smaller component and an insertion of all pixels of the smaller component into the larger one. In the extremal regions, the 'maximally stable' ones are those corresponding to thresholds where the relative area change as a function of relative change of threshold is at a local minimum, i.e. the MSER are the parts of the image where local binarization is stable over a large range of thresholds. [1] [2]
[edit] Robust wide-baseline algorithm
The purpose of this algorithm is to match MSER to establish correspondence points between images. First MSER regions are computed on the intensity image (MSER+) and on the inverted image (MSER-). Measurement regions are selected at multiple scales: the size of the actual region, 1.5x, 2x, and 3x scaled convex hull of the region. Matching is accomplished in a robust manner, so it is better to increase the distinctiveness of large regions without being severely affected by clutter or non-planarity of the region's pre-image. A measurement taken from an almost planar patch of the scene with stable invariant description are called a 'good measurement'. Unstable ones or those on non-planar surfaces or discontinuities are called 'corrupted measurements'. The robust similarity is computed: For each on region A,k regions B1,...,Bk from the other image with the corresponding i-th measurement nearest to are found and a vote is cast suggesting correspondence of A and each of B1,...,Bk. Votes are summed over all measurements, and using probability analysis, we pick out the 'good measurements' as the 'corrupt measurements' will likely spread their votes randomly. By applying RANSAC to the centers of gravity of the regions, we can compute a rough epipolar geometry. An affine transformation between pairs of potentially corresponding regions is computed, and correspondences define it up to a rotation, which is then determined by epipolar lines. The regions are then filtered, and the ones with correlation of their transformed images above a threshold are chosen. RANSAC is applied again with a more narrow threshold, and the final eipolar geometry is estimated by the eight point algorithm.
[edit] Extensions and Adaptations
- The MSER algorithm has been adapted to colour images, by replacing thresholding of the intensity function with agglomerative clustering, based on colour gradients. [5]
- The MSER algorithm can be used to track colour objects, by performing MSER detection on the Mahalanobis distance to a colour distribution. [6]
[edit] Other Applications
- Shape Descriptors for Maximally Stable Extremal Regions
- Efficient Maximally Stable Extremal Region (MSER) Tracking
- N-tree Disjoine-Set Forests for Maximally Stable Extremal Regions
- Video Google and Object Level Grouping for Video Shots
- Real-Time Extraction of Maximally Stable Extremal Regions on an FPGA
- Maximally Stable Colour Regions for Recognition and Matching
[edit] See also
[edit] References
- ^ a b c d Mikolajczyk, K. Tuytelaars, T. Schmid, C. Zisserman, A. Matas, J. Van Gool, L. Schaffalitzky, F. and Kadir, T. "A Comparison of Affine Region Detectors" International Journal of Computer Vision, pages 43-72, 2006.
- ^ a b c d e J. Matas, O. Chum, M. Urba, and T. Pajdla. "Robust wide baseline stereo from maximally stable extremal regions." Proc. of British Machine Vision Conference, pages 384-396, 2002.
- ^ Sivic, J. and Zisserman, A. "Video Google: A Text REtrieval Approach to Object Matching in Videos" ICCV, 2003.
- ^ a b Forssen, P-E. and Lowe, D.G. "Shape Descriptors for Maximally Stable Extremal Regions" ICCV, 2007.
- ^ Forssen, P-E. Maximally Stable Colour Regions for Recognition and Matching, CVPR, 2007.
- ^ Donoser, M. and Bischof, H. Efficient Maximally Stable Extremal Region (MSER) Tracking CVPR, 2006.