This article isn't finished yet...
Graph Partitioning
Bi-partitioning task
# Minmal-cut
# Normalized-cut
Criterion: Normalized-cut [Shi-Malik, '97]
Define: Connectivity between groups relative to the density of each group
: total weight of the edges with at least one endpoint in :
The purpose of this criterion is to produce more balanced partitions.
Spectral Graph Theory:
Analyze the "spectrum" of matrix(s) representing
Spectrum: Eigenvectors of a graph, ordered by the magnitude(strength) of their corresponding eigenvalues :
-regular : the degree of each vertex in the graph is
If is not connected, for example, has 2 components, each -regular.
每一个特征向量表现了图的划分方式
What are some eigenvectors?
# Spectral Partitioning Algorithm
# 算法流程
# Pre-processing
根据图构建拉普拉斯矩阵 。
# Decomposition
* 分解
求 的第 2 小的特征值 () 和特征向量 。
# Grouping
维向量 的 个参数对应到 个顶点,可以画图,将参数作为纵坐标,顶点标号作为横坐标,结合图像进行分组 (grouping)