Presentation is loading. Please wait.

Presentation is loading. Please wait.

Normalized Cuts and Image Segmentation Jianbo Shi and Jitendra Malik, Presented by: Alireza Tavakkoli.

Similar presentations


Presentation on theme: "Normalized Cuts and Image Segmentation Jianbo Shi and Jitendra Malik, Presented by: Alireza Tavakkoli."— Presentation transcript:

1 Normalized Cuts and Image Segmentation Jianbo Shi and Jitendra Malik, Presented by: Alireza Tavakkoli

2 Image Segmentation

3 Image segmentation How do you pick the right segmentation? Bottom up segmentation: - Tokens belong together because they are locally coherent. Top down segmentation: - Tokens grouped because they lie on the same object. Bottom up segmentation: - Tokens belong together because they are locally coherent. Top down segmentation: - Tokens grouped because they lie on the same object.

4 “Correct” segmentation There may not be a single correct answer. Partitioning is inherently hierarchical. One approach we will use in this presentation: “Use the low-level coherence of brightness, color, texture or motion attributes to come up with partitions”

5 Outline 1. Introduction 2. Graph terminology and representation. 3. “Min cuts” and “Normalized cuts”. 4. Other segmentation methods using eigenvectors. 5. Conclusions.

6 Outline 1. Introduction 2. Graph terminology and representation. 3. “Min cuts” and “Normalized cuts”. 4. Other segmentation methods using eigenvectors. 5. Conclusions.

7 Graph-based Image Segmentation Image (I) Graph Affinities (W) Intensity Color Edges Texture Slide from Timothee Cour (http://www.seas.upenn.edu/~timothee)

8 Graph-based Image Segmentation Image (I) Slide from Timothee Cour (http://www.seas.upenn.edu/~timothee) Graph Affinities (W) Intensity Color Edges Texture

9 Graph-based Image Segmentation Image (I)Eigenvector X(W) Slide from Timothee Cour (http://www.seas.upenn.edu/~timothee) Graph Affinities (W) Intensity Color Edges Texture

10 Graph-based Image Segmentation Image (I)Eigenvector X(W) Discretization Slide from Timothee Cour (http://www.seas.upenn.edu/~timothee) Graph Affinities (W) Intensity Color Edges Texture

11 Outline 1. Introduction 2. Graph terminology and representation. 3. “Min cuts” and “Normalized cuts”. 4. Other segmentation methods using eigenvectors. 5. Conclusions.

12 Graph-based Image Segmentation V: graph nodes E: edges connection nodes G = {V,E} Pixels Pixel similarity Slides from Jianbo Shi

13 Graph terminology Similarity matrix: Slides from Jianbo Shi

14 Affinity matrix Similarity of image pixels to selected pixel Brighter means more similar Reshape N*M pixels M pixels N pixels Warning the size of W is quadratic with the number of parameters!Warning the size of W is quadratic with the number of parameters!

15 Graph terminology Degree of node: Slides from Jianbo Shi … …

16 Graph terminology Volume of set: Slides from Jianbo Shi

17 Graph terminology Slides from Jianbo Shi Cuts in a graph:

18 Representation Partition matrix X : Pair-wise similarity matrix W : Degree matrix D : Laplacian matrix L : segments pixels

19 Pixel similarity functions Intensity Texture Distance

20 Pixel similarity functions Intensity Texture Distance here c(x) is a vector of filter outputs. A natural thing to do is to square the outputs of a range of different filters at different scales and orientations, smooth the result, and rack these into a vector.

21 Definitions spectral clustering Methods that use the spectrum of the affinity matrix to cluster are known as spectral clustering. Normalized cuts, Average cuts, Average association make use of the eigenvectors of the affinity matrix. Why these methods work?

22 Spectral Clustering DataSimilarities * Slides from Dan Klein, Sep Kamvar, Chris Manning, Natural Language Group Stanford University

23 Eigenvectors and blocks Block matrices have block eigenvectors: Near-block matrices have near-block eigenvectors: 1100 1100 0011 0011 eigensolver.71 0 0 0 0 1 = 2 2 = 2 3 = 0 4 = 0 11.20 110-.2.2011 0-.211 eigensolver.71.69.14 0 0 -.14.69.71 1 = 2.02 2 = 2.02 3 = -0.02 4 = -0.02 * Slides from Dan Klein, Sep Kamvar, Chris Manning, Natural Language Group Stanford University

24 Spectral Space Can put items into blocks by eigenvectors: Clusters clear regardless of row ordering: 11.20 110-.2.2011 0-.211.71.69.14 0 0 -.14.69.71 e1e1 e2e2 e1e1 e2e2 1.210 101 101-.2 01 1.71.14.69 0 0 -.14.71 e1e1 e2e2 e1e1 e2e2 * Slides from Dan Klein, Sep Kamvar, Chris Manning, Natural Language Group Stanford University

25 Outline 1. Introduction 2. Graph terminology and representation. 3. “Min cuts” and “Normalized cuts”. 4. Other segmentation methods using eigenvectors. 5. Conclusions.

26 How do we extract a good cluster? Simplest idea x Simplest idea: we want a vector x giving the association between each element and a cluster strong affinity with one another We want elements within this cluster to, on the whole, have strong affinity with one another maximize We could maximize constraint But need the constraint eigenvalue problem This is an eigenvalue problem - choose the eigenvector of W with largest eigenvalue.

27 Criterion for partition: Minimum cut First proposed by Wu and Leahy A B Ideal Cut Cuts with lesser weight than the ideal cut Problem! Weight of cut is directly proportional to the number of edges in the cut.Problem!

28 Normalized Cut Normalized cut or balanced cut: Finds better cut

29 Normalized Cut Volume of set (or association): A B

30 Normalized Cut Volume of set (or association): Define normalized cut: “a fraction of the total edge connections to all the nodes in the graph”: A B A B Define normalized association: “how tightly on average nodes within the cluster are connected to each other” A B

31 Subject to: Observations(I) Maximizing Nassoc is the same as minimizing Ncut, since they are related: How to minimize Ncut ? Transform Ncut equation to a matricial form. After simplifying: Rayleigh quotient NP-Hard! y ’s values are quantized

32 Instead, relax into the continuous domain by solving generalized eigenvalue system: Which gives: Note that so, the first eigenvector is y 0 =1 with eigenvalue 0. The second smallest eigenvector is the real valued solution to this problem!! Observations(II) min

33 Algorithm 1. Define a similarity function between 2 nodes. i.e.: 2. Compute affinity matrix (W) and degree matrix (D). 3. Solve 4. Use the eigenvector with the second smallest eigenvalue to bipartition the graph. 5. Decide if re-partition current partitions. Note: since precision requirements are low, W is very sparse and only few eigenvectors are required, the eigenvectors can be extracted very fast using Lanczos algorithm.

34 Discretization Sometimes there is not a clear threshold to binarize since eigenvectors take on continuous values. How to choose the splitting point? a) Pick a constant value (0, or 0.5). b) Pick the median value as splitting point. c) Look for the splitting point that has the minimum Ncut value: 1. Choose n possible splitting points. 2. Compute Ncut value. 3. Pick minimum.

35 Use k -eigenvectors Ncut Recursive 2-way Ncut is slow. We can use more eigenvectors to re-partition the graph, however: degree of smoothness Not all eigenvectors are useful for partition (degree of smoothness). k-means k Procedure: compute k-means with a high k. Then follow one of these procedures: kNcut a) Merge segments that minimize k -way Ncut criterion. b) Use the k segments and find the partitions there using exhaustive search. Compute Q (next slides). 11.20 110-.2.2011 0-.211.71.69.14 0 0 -.14.69.71 e1e1 e2e2 e1e1 e2e2

36 Example Eigenvectors Segments

37 Experiments Define similarity: for point sets. for brightness images. for HSV images. in case of texture.

38 Experiments (I) Point set segmentation: (a) Pointset generated by Poisson process. (b) Segmentation results.

39 Experiments (II) Synthetic images:

40 Experiments (III) Weather radar:

41 Experiments (IV) Motion segmentation

42 Outline 1. Introduction 2. Graph terminology and representation. 3. “Min cuts” and “Normalized cuts”. 4. Other segmentation methods using eigenvectors. 5. Conclusions.

43 Other methods Average association Use the eigenvector of W associated to the biggest eigenvalue for partitioning. Tries to maximize: Has a bias to find tight clusters. Useful for Gaussian distributions. A B

44 Other methods Average cut Tries to minimize: Very similar to normalized cuts. We cannot ensure that partitions will have a a tight within-group similarity since this equation does not have the nice properties of the equation of normalized cuts.

45 Other methods

46 20 points are randomly distributed from 0.0 to 0.5 12 points are randomly distributed from 0.65 to 1.0 Normalized cut Average cut Average association

47 Other methods 20 points are randomly distributed from 0.0 to 0.5 12 points are randomly distributed from 0.65 to 1.0 Normalized cut Average cut Average association

48 Other methods 20 points are randomly distributed from 0.0 to 0.5 12 points are randomly distributed from 0.65 to 1.0 Normalized cut Average cut Average association

49 Outline 1. Introduction 2. Graph terminology and representation. 3. “Min cuts” and “Normalized cuts”. 4. Other segmentation methods using eigenvectors. 5. Conclusions.

50 Conclusions Good news: Simple and powerful methods to segment images. Flexible and easy to apply to other clustering problems. Bad news: High memory requirements (use sparse matrices). Very dependant on the scale factor for a specific problem.

51 Thank you! The End!

52 Examples Spectral Clutering Images from Matthew Brand (TR-2002-42)

53 Spectral clustering Makes use of the spectrum of the similarity matrix of the data to cluster the points. Solve clustering for affinity matrix w(i,j)  distance node i to node j

54 Graph terminology Similarity matrix:Degree of node: Volume of set:Graph cuts:


Download ppt "Normalized Cuts and Image Segmentation Jianbo Shi and Jitendra Malik, Presented by: Alireza Tavakkoli."

Similar presentations


Ads by Google