Skip main navigation

Sampling Shapes from a Shape Model

Sampling shapes is maybe the simplest possible use of shape models. Nevertheless it has many practical applications. For a medical student, sampling shapes might be a useful way to learn about the shape variations of an anatomical structure.
© University of Basel

We have seen that, thanks to the marginalisation property of a Gaussian Process, any finite marginal distribution is a multivariate normal distribution. One important consequence of this is that we can sample from the model to generate new shapes from the shape family.

Sampling from a Probability Distribution

Sampling from a probability distribution is the task of generating concrete values (samples) of a random variable, according to the probabilities defined by the distribution. With this process, samples of high probability are more likely to be generated than those with a low probability. Note that this use of the term sampling should not be confused with the process of sampling a continuous function, where the goal is to obtain a discrete representation of the function.

Samples from a hand modelFigure 1: random samples of a shape model of the hand.

In our application, the values of the random variable are deformation fields, which represent shape variations. The possibility to sample these deformation fields thus gives us a means to generate new shapes. Figure 1 shows a number of samples from our hand model. Looking at the sampled hand shapes, we get a visual impression of the variability of this shape family. For instance we can see immediately that the main sources of shape variability are the size of the hands and how much the fingers are spread.

Sampling Shapes from Shape Models

Sampling shapes is maybe the simplest possible use of shape models. Nevertheless it has many practical applications. For a medical student, sampling shapes might be a useful way to learn about the shape variations of an anatomical structure. For a designer of medical implants, samples can be used for generating representative data for a shape family, in order to test whether an implant design fits the typical shapes that occur in a population. For us as developers of a model, sampling is an invaluable diagnostic tool to check if the model that we computed is reasonable.

Sampling Shapes from a Multivariate Normal Distribution

Unlike for many other distributions, sampling from a multivariate normal distribution is straight-forward. The general procedure is as follows:

Let (x sim N(mu, K)) be a multivariate normal distribution with mean (mu in mathbb{R}^n) and covariance matrix (K in mathbb{R}^{n times n}).

  1. Generate (n) random numbers (c_1, ldots, c_n) where (c_i sim N(0,1)) by calling multiple times a scalar Gaussian random number generator (which is readily available in most programming languages). Define the vector (c = (c_1, ldots,c_n)^T).
  2. Compute (K = LL^T) using the Cholesky decomposition. Here (L) is a lower triangular matrix, which results from this decomposition.
  3. Compute the sample (x = mu + Lc), which has the desired distribution.

A downside of this procedure is, however, that we need to have access to the full covariance matrix (K). In practical shape modelling applications, this matrix is often too large to be stored explicitly. As we will see later this week, there are ways to sample from a shape model that do not suffer from this problem and even allow us to explore the variability in a systematic way.

© University of Basel
This article is from the free online

Statistical Shape Modelling: Computing the Human Anatomy

Created by
FutureLearn - Learning For Life

Reach your personal and professional goals

Unlock access to hundreds of expert online courses and degrees from top universities and educators to gain accredited qualifications and professional CV-building certificates.

Join over 18 million learners to launch, switch or build upon your career, all at your own pace, across a wide range of topic areas.

Start Learning now