Segmentation-based object categorization

1

The image segmentation problem is concerned with partitioning an image into multiple regions according to some homogeneity criterion. This article is primarily concerned with graph theoretic approaches to image segmentation applying graph partitioning via minimum cut or maximum cut. Segmentation-based object categorization can be viewed as a specific case of spectral clustering applied to image segmentation.

Applications of image segmentation

Segmentation using normalized cuts

Graph theoretic formulation

The set of points in an arbitrary feature space can be represented as a weighted undirected complete graph G = (V, E), where the nodes of the graph are the points in the feature space. The weight w_{ij} of an edge is a function of the similarity between the nodes i and j. In this context, we can formulate the image segmentation problem as a graph partitioning problem that asks for a partition of the vertex set V, where, according to some measure, the vertices in any set V_i have high similarity, and the vertices in two different sets V_i, V_j have low similarity.

Normalized cuts

Let G = (V, E, w) be a weighted graph. Let A and B be two subsets of vertices. Let: In the normalized cuts approach, for any cut in G, measures the similarity between different parts, and measures the total similarity of vertices in the same part. Since, a cut that minimizes also maximizes. Computing a cut that minimizes is an NP-hard problem. However, we can find in polynomial time a cut of small normalized weight using spectral techniques.

The ncut algorithm

Let: Also, let D be an n \times n diagonal matrix with d on the diagonal, and let W be an n \times n symmetric matrix with. After some algebraic manipulations, we get: subject to the constraints: Minimizing subject to the constraints above is NP-hard. To make the problem tractable, we relax the constraints on y, and allow it to take real values. The relaxed problem can be solved by solving the generalized eigenvalue problem for the second smallest generalized eigenvalue. The partitioning algorithm:

Computational Complexity

Solving a standard eigenvalue problem for all eigenvectors (using the QR algorithm, for instance) takes O(n^3) time. This is impractical for image segmentation applications where n is the number of pixels in the image. Since only one eigenvector, corresponding to the second smallest generalized eigenvalue, is used by the uncut algorithm, efficiency can be dramatically improved if the solve of the corresponding eigenvalue problem is performed in a matrix-free fashion, i.e., without explicitly manipulating with or even computing the matrix W, as, e.g., in the Lanczos algorithm. Matrix-free methods require only a function that performs a matrix-vector product for a given vector, on every iteration. For image segmentation, the matrix W is typically sparse, with a number of nonzero entries O(n), so such a matrix-vector product takes O(n) time. For high-resolution images, the second eigenvalue is often ill-conditioned, leading to slow convergence of iterative eigenvalue solvers, such as the Lanczos algorithm. Preconditioning is a key technology accelerating the convergence, e.g., in the matrix-free LOBPCG method. Computing the eigenvector using an optimally preconditioned matrix-free method takes O(n) time, which is the optimal complexity, since the eigenvector has n components.

Software Implementations

scikit-learn uses LOBPCG from SciPy with algebraic multigrid preconditioning for solving the eigenvalue problem for the graph Laplacian to perform image segmentation via spectral graph partitioning as first proposed in and actually tested in and.

OBJ CUT

OBJ CUT is an efficient method that automatically segments an object. The OBJ CUT method is a generic method, and therefore it is applicable to any object category model. Given an image D containing an instance of a known object category, e.g. cows, the OBJ CUT algorithm computes a segmentation of the object, that is, it infers a set of labels m. Let m be a set of binary labels, and let \Theta be a shape parameter(\Theta is a shape prior on the labels from a layered pictorial structure (LPS) model). An energy function is defined as follows. The term is called a unary term, and the term is called a pairwise term. A unary term consists of the likelihood based on color, and the unary potential based on the distance from \Theta. A pairwise term consists of a prior and a contrast term. The best labeling m^{*} minimizes, where w_i is the weight of the parameter \Theta_i.

Algorithm

Other approaches

This article is derived from Wikipedia and licensed under CC BY-SA 4.0. View the original article.

Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc.
Bliptext is not affiliated with or endorsed by Wikipedia or the Wikimedia Foundation.

Edit article