Inheritance diagram for nipy.labs.datasets.transforms.transform:
The base Transform class.
This class defines the Transform interface and can be subclassed to define more clever composition logic.
Bases: object
A transform is a representation of a transformation from one 3D space to another. It is composed of a coordinate mapping, or its inverse, as well as the name of the input and output spaces.
The Transform class is the base class for transformations and defines the transform object API.
Attributes
inverse_mapping | |
mapping |
Methods
composed_with | |
get_inverse |
Create a new transform object.
Parameters : | mapping: callable f(x, y, z) :
inverse_mapping: callable f(x, y, z) :
input_space: string :
output_space: string :
|
---|
Notes
You need to supply either the mapping or the inverse mapping.
Returns a new transform obtained by composing this transform with the one provided.
Parameters : | transform: nipy.core.transforms.transform object :
|
---|
Return the inverse transform.