Registration framework¶
Deformation modules¶
Mathematical definition¶
A deformation module is a structure
The field generator specifies the vector fields that can be generated by the deformation module, i.e. the structure that is incorporated in the deformation model.
It is possible to combine several deformation modules
Implementation¶
A deformation module is defined as a class whose main method is a field generator which specifies, for each module, the vector fields that can be generated. It uses the manifold and the control of the deformation modules and returns a structured vector field. The manifold is itself a class implementing the notion of geometrical descriptor and, more generally, of all geometrical objects which can be displaced through the action of a vector field. This action is defined by the infinitesimal action method. The control variable is a tensor. Structured vector fields implement the mathematical notion of vector field: they can be applied to a tensor of points and return a tensor of speeds. The second key method for a deformation module is the cost which associates a scalar cost to a couple of a manifold and a control.
The combination of deformation module is implemented via the class CompoundModule which is built from a list of deformation modules.
Modular large deformations¶
Mathematical definition¶
A modular large deformation is a diffeomorphism built as a flow of modular vector fields, i.e. a trajectory of vector fields generated by a given deformation module
We are interested in particular trajectories: the geodesic ones. They are parametrized by an initial value of geometrical descriptor
where
is the Hamiltonian and
Implementation¶
The shoot class implements the shooting equations. It takes as input an Hamiltonian implementing the mathematical Hamiltonian which is itself defined from a deformation module. The manifold of the deformation module contains an attribute gd implementing the geometrical descriptor
The shoot class can also take in input a list of controls (implementing a trajectory of controls) which are used at each time instead of the geodesic ones. This can be used for instance to study the influence of one specific component of the controls.
Modular registration¶
Mathematical definition¶
Given a couple of source and target shapes
Implementation¶
The class RegistrationModel is the keystone allowing to perform a registration using a chosen deformation model. It is initialized with lists of Deformable, Attachment (defining the attachment functions for these data) and DeformationModules. A Deformable is a class implementing the notion of geometric data: it gathers point clouds, meshes and images. To each element of the Deformable list, is associated an Attachment implementing a distance between to Deformables of the same class. Several Attachments are implemented such as euclidean distance for point clouds, the varifold distance for curves or meshes and
Implemented deformation modules¶
There are two categories of deformation modules: the explicit ones where the field generator is explicitly given in the definition, and the implicit ones
Explicit deformation modules¶
These deformation modules are said to be explicit in the sense that their field generator is explicitly given in the definition.
Local translations¶
Mathematical definition¶
This module generates a sum of local translations, localized by a chosen kernel
Let
where and where
Implementation¶
This module is implemented in the class Translations which is initialized by a scalar
Local constrained translations¶
Mathematical definition¶
This deformation module builds also sum of local translations but imposes some links between them to constrain the generated field. Let
where and where
Implementation¶
This module is implemented in the class LocalConstrainedTranslations which is initialized by a scalar
Silent¶
Mathematical definition¶
This module generates a null vector field: when it is combined with other ones, it does not contribute to the generated vector field but its geometrical descriptors are deformed by it. Let
(defined by the shape space )
Implementation¶
The silent module induced by a landmark shape space is implemented in the class Silent. It is initialized by an integer
Implicit deformation modules¶
In many cases, the deformation prior may not be given in the form of an explicit type of vector field but more in some properties that the vector fields should satisfy. In order to address this problem, we define implicit deformation modules, where the field generator
with
a RKHS of vector field, a positive scalar a linear surjective constraint operator on vector fields that takes values in the space of constraints (vector space of finite dimension) is a linear operator which defines the value that one wants to observe.
The space of geometrical descriptors
From this definition, it is possible to compute the explicit expression for the field generator
with
and
Order 0¶
In this first example, the geometrical descriptor
Mathematical definition¶
Let
with
The field generator is then given by
where
Implementation¶
This module is implemented in the class ImplicitModule0 which is initialized by a scalar
Order 1¶
The intuitive idea behind this module is to be able to incorporate objects related elastic properties in the deformation model. More specifically, we constrain the local changes of lengths induced by the action of the vector field at some specified locations
Mathematical definition¶
Constraining such local changes of lengths amounts to constraining the infinitesimal strain tensor
Let
with with and for each (diagonal matrix).
Implementation¶
This module is implemented in the class ImplicitModule1 which is initialized by a scalar