Controlling the singular values of n-dimensional matrices is often required in geometric algorithms in graphics and engineering. This paper introduces a convex framework for problems that involve singular values. Specifically, it enables the optimization of functionals and constraints expressed in terms of the extremal singular values of matrices.
Towards this end, we introduce a family of convex sets of matrices whose singular values are bounded. These sets are formulated using Linear Matrix Inequalities (LMI), allowing optimization with standard convex Semidefinite Programming (SDP) solvers. We further show that these sets are optimal, in the sense that there exist no larger convex sets that bound singular values.
A number of geometry processing problems are naturally described in terms of singular values. We employ the proposed framework to optimize and improve upon standard approaches. We experiment with this new framework in several applications: volumetric mesh deformations, extremal quasi-conformal mappings in three dimensions, non-rigid shape registration and averaging of rotations. We show that in all applications the proposed approach leads to algorithms that compare favorably to state-of-art algorithms.
Just a teaser... download the paper if you want all the details.
Solve optimization problem explicitly expressed in terms of matrices and their extermal singular values: \[ \begin{align} \min_{A\in\mathbb{R}^{n\times n}} & \quad f(A,\sigma_\mathrm{min}(A),\sigma_\mathrm{max}(A)) \\ \mathrm{s.t.} & \quad g_i(A,\sigma_\mathrm{min}(A),\sigma_\mathrm{max}(A))\leq 0\, , \quad i=1,..,r \\ \end{align} \] where \(f\) and \(g_i\) are convex and satisfy simple monotonicity conditions.
For example, find a matrix \(A\) which is the closest to a given matrix \(B\) and deviates by at most \(\Gamma\) from an isometry: \[ \begin{align} \min_{A\in\mathbb{R}^{n\times n}} & \quad \left\|A-B\right\|_F\\ \mathrm{s.t.} & \quad \Gamma^{-1} \leq \sigma_\mathrm{min}(A) \leq \sigma_\mathrm{max}(A) \leq \Gamma\\ \end{align} \]
Formulate convex bounds on the extremal singular values \(\sigma_\mathrm{min}(A)\) and \(\sigma_\mathrm{max}(A)\).
Bounding \(\sigma_\mathrm{max}(A)\) is readily convex and can be written as an LMI (positive semidefinite constraint): \[ \sigma_\mathrm{max}(A)\leq\Gamma \quad \Leftrightarrow \begin{pmatrix} \Gamma I & A \\ A^T & \Gamma I \\ \end{pmatrix}\succeq 0 \]
Bounding \(\sigma_\mathrm{min}(A)\) is non-convex, but can be also imposed by an LMI: \[ \sigma_\mathrm{min}(A)\geq\gamma \quad \Leftarrow \quad \frac{A+A^T}{2} \succeq \gamma I \] This characterizes a maximal convex subset of the bound.
Moreover, by simply rotating \(A\) it spans a maximal convex cover of the bound.
Semidefinite programming (SDP) can be used to enforce both constraints.
Optimize problems with energies and constraints expressed in terms of singular values:
Compute mapping that minimize the maximal conformal distortion:
Improve a basic ICP algorithm for surface matching -- restrict deviations from isometry to directly control distortion:
Average (and interpolate) multiple rotations:
A Matlab implementation of the paper can found on GitHub. A zip file of the latest version can be directly downloaded here.
This package includes three examples:
Getting started: Before running the code, make sure you have YALMIP and MOSEK installed. Update the paths in initialize.m accordingly. The code was tested with Matlab (2013a), YALMIP (20140915) and MOSEK (7.0.0.92).
Disclaimer: The code is provided as-is for academic use only and without any guarantees. Please contact the authors to report any bugs.
@article{ContSingVal:2014,
author = {Kovalsky, Shahar Z. and Aigerman, Noam and Basri, Ronen and Lipman, Yaron},
title = {Controlling Singular Values with Semidefinite Programming},
journal = {ACM Transactions on Graphics (proceedings of ACM SIGGRAPH)},
volume = {33},
number = {4},
year = {2014},
}