Inheritance diagram for nipy.algorithms.registration.polyaffine:
Bases: nipy.algorithms.registration.transform.Transform
centers: N times 3 array
We are given a set of affine transforms T_i with centers x_i, all in homogeneous coordinates. The polyaffine transform is defined, up to a right composition with a global affine, as:
T(x) = sum_i w_i(x) T_i x
where w_i(x) = g(x-x_i)/Z(x) are normalized Gaussian weights that sum up to one for every x.
xyz is an (N, 3) array
Compose this transform onto another
Parameters: | other : Transform
|
---|---|
Returns: | composed_transform : Transform
|