Signal Processing Approach to Fair Surface Design by Taubin

The title and word choice are a bit out-of-date. Surface fairing refers to mesh smoothing and denoising. The ansatz of the paper is to cast a given mesh as a signal that can be smoothed with a low-pass filter.

The ansatz is motivated and explained in the 1D case. Curves. A discrete laplacian definition is given without proof or background.

\[\Delta x_i = \frac{1}{2}\Big(x_{i+1} - x_{i}\Big) + \frac{1}{2}\Big(x_{i-1} - x_{i}\Big)\]

The difference of differences around $x_i$ definition given is an approximation of the second derivative, and when viewing the polygon vertices as a discrete sequence, it is essentially the second finite difference of the sequence ${x_i}$,

\[\begin{align} \Delta^2 x_i &= x^{i+1} - 2 x_{i} + x^{i-1} \\ &= \Big(x_{i+1} - x_{i}\Big) + \Big(x_{i-1} - x_{i}\Big) \\ \end{align}\]

When written as a matrix the Laplacian of the sequence is the circulant matrix, \(K = -\frac{1}{2}\begin{bmatrix} -2 & 1 & 0 & \cdots & 0 & 1\\ 1 & -2 & 1 & 0 & \cdots & 0 \\ 0 & 1 & \ddots & \ddots & \ddots & \vdots \\ 0 & 0 & \ddots & \ddots & 1 & 0 \\ \vdots & \vdots & \ddots & 1 & -2 & 1 \\ 1 & 0 & \cdots & 0 & 1 & -2 \\ \end{bmatrix}.\)

$\Delta \approx K$ has Real Eigenvalues

By the Spectral Theorem $K$ can be diagonalized by some real orthogonal matrix, $\Lambda = O K O^T$. Therefore, $K$ has real eigenvalues. Though, orthogonally diagonalizing $K$ is overkill.

Instead, suppose $0 \neq \lambda \in \mathbb{C}$ is an eigenvalue of $K$, for some $v \in \mathbb{C}^n$. Also define the inner product on $\mathbb{C}^n$ to be $v \cdot w := v^T \bar{w}$. The product $Kv \cdot v$ can be computed two different ways:

  1. $Kv \cdot v = \lambda v \cdot v = \lambda |v|^2$
\[\begin{align} Kv \cdot v &= (Kv)^T\bar{v} \\ &= v^TK \bar{v} \quad (\text{b/c } K = K^T)\\ &= v^T \overline{Kv} \\ &= \bar{\lambda} v^T \bar{v} \\ &= \bar{\lambda} \|v\|^2 \\ \end{align}\]

From which one must conclude $\bar{\lambda} = \lambda \ \Longrightarrow \lambda \in \mathbb{R}$. $\Box$

By a similar argument, it can be shown that $v \neq w$ eigenvectors of $K$, which do not span each other, must be orthogonal, if they have different eigenvalues. Just compute $Kv \cdot w$ two different ways. Assuming $\lambda_v \neq \lambda_w$ then

  1. $Kv \cdot w = \lambda v \cdot w = \lambda_v v \cdot w$
\[\begin{align} Kv \cdot w &= (Kv)^T\bar{w} \\ &= v^TK \bar{w} \quad (\text{b/c } K = K^T)\\ &= v^T \overline{Kw} \\ &= \bar{\lambda_w} v^T \bar{w} \\ &= \lambda_w v \cdot w \quad (\text{b/c } \lambda \in \mathbb{R})\\\\ \end{align}\]

Since $\lambda_v \neq \lambda_w \ \Longrightarrow \ v \cdot w = 0$.