Point distribution model
The Point Distribution Model is a model for representing the mean geometry of a shape and some statistical modes of geometric variation inferred from a training set of shapes. It has been developped by Cootes, Taylor et al [1][3] and became a standard in computer vision for statistical study of shape [2] and for segmentation of medical images [1] where shape priors really help interpretation of noisy and low-contrasted pixels/voxels. The latter point leads to Active shape models (ASM) and Active Appearance Models (AAM).
Point Distribution Models rely on Landmark points. A landmark is an annotating point posed by an anatomist onto a given locus for every shape instance across the training set population. For instance, the same landmark will designate the tip of the index in a training set of 2D hands outlines. Principal Component Analysis (PCA), for instance, is a relevant tool for studying correlations of movement between groups of landmarks among the training set population. Typically, it might detect that all the landmarks located along the same finger move exactly together across the training set examples showing different finger spacing for a flat-posed hands collection.
The implementation of the procedure is rouglhy the following:
1 annotate the training set outlines with enough corresponding landmarks to sufficiently approximate the geometry of the original shapes
2 align the clouds of landmark using the Generalized procrustes analysis (minimization of overall distance between landmarks of same label). The big idea is that shape information is not related to affine pose parameters, which need to be removed before any shape study. A mean shape can now be computed in averaging the aligned landmark positions.
3 now the shape outlines are reduced to sequences of n landmarks, we can see the training set as a 2n or 3n (2D/3D) space where any shape instance is a single dot. Assuming the scattering is gaussian in this space, PCA (Principal Component Analysis) is supposedly the most straightforward tool to analyse the training set in this space
4 PCA computes normalized eigenvectors and eigenvalues of the training set covariance matrix. Each eigenvector describe a principal mode of variation along the set, the corresponding eigenvalue indicating the importance of this mode in the shape space scattering. Since correlation was found between landmarks, the total variation of the space is concentrated on the very first eigenvectors, showing a very fast descent. Otherwise correlation was not found, suggesting the training set shows no variation or the landmarks are not properly posed.
An eigenvector, interpreted in euclidean space, can be seen as a sequence of n euclidean vectors associated to corresponding landmark and designating a compound move for the whole shape. Global nonlinear variation is usually well handled provided nonlinear variation is kept to a reasonable level. Typically, a twisting nematod worm opens the road to Kernel PCA-based methods.
Due to the PCA properties: eigenvectors are mutually orhtogonal, form a basis of the training set cloud in the shape space, and cross at the 0 in this space, which represents the mean shape. Also, PCA is a traditional way of fitting a closed ellipsoid to a gaussian cloud of points (whatever their dimension): this suggests the concept of bounded variation.
The very big idea of PDM is that eigenvectors can be linearly combined to create an infinity of new shape instances that will 'look like' the one in the training set. The coefficients are bounded alike the values of the corresponding eigenvalues, so as to ensure the generated 2n/3n-dimensional dot will remain into the hyper-ellipsoïdal allowed domain (ASD, Allowable Shape Domain [1])
Some Interesting Articles
[1]: @article{ cooper95asp_training, author = "D.H. Cooper and T.F. Cootes and C.J. Taylor and J. Graham", title = "Active shape models - their training and application", journal = "Computer Vision and Image Understanding", number = 61, pages = "38--59", year = 1995 }
[2]: @inproceedings{davies03impi, title = "Shape discrimination in the Hippocampus using an MDL Model", author = "Rhodri H. Davies and Carole J. Twining and P. Daniel Allen and Tim F. Cootes and Chris J. Taylor", year = 2003, conference = "IMPI" } http://www2.wiau.man.ac.uk/caws/Conferences/10/proceedings/8/papers/133/rhhd_ipmi03%2Epdf
[3]: @techreport{ cootes04report, author = "T. F. Cootes ", title = "Statistical models of appearance for computer vision", year = "2004", month = "May"} http://www.isbe.man.ac.uk/~bim/Models/app_models.pdf
[4]: @techreport{ stegmann02pdmtut, author = {Stegmann, M. B. and Gomez, D. D.}, title = {A Brief Introduction to Statistical Shape Analysis}, year = {2002}, publisher = {Informatics and Mathematical Modelling, Technical University of Denmark, DTU}, address = {Richard Petersens Plads, Building 321, DK-2800 Kgs. Lyngby}, month = {mar}, note = {Images, annotations and data reports are placed in the enclosed zip-file.}} http://www2.imm.dtu.dk/pubdb/views/publication_details.php?id=403
See also
- Principal Component Analysis
- Procrustes analysis
- Generalized procrustes analysis
- Active shape model
- Active Appearance Model
External links
- Description of PDM, ASM and AAMs from Manchester University.
- Tim Cootes' home page (one of the original co-inventors of PDM & ASMs).
Among his ressources, this report summarizes the state of the art in this discipline: http://www.isbe.man.ac.uk/~bim/Models/app_models.pdf