3-D affine geometric transformation
An affine3d
object stores information about a 3-D affine
geometric transformation and enables forward and inverse transformations.
You can create an affine3d
object using the following
methods:
imregtform
— Estimates a
geometric transformation that maps a moving image to a fixed image using
similarity optimization
randomAffine3d
— Creates a randomized 3-D affine
transformation
The affine3d
function described here
tform = affine3d
creates an affine3d
object with default property settings that correspond to the identity
transformation.
tform = affine3d(
sets the
property A
)T
with a valid affine transformation defined by
nonsingular matrix A
.
invert | Invert geometric transformation |
isRigid | Determine if transformation is rigid transformation |
isSimilarity | Determine if transformation is similarity transformation |
isTranslation | Determine if transformation is pure translation |
outputLimits | Find output spatial limits given input spatial limits |
transformPointsForward | Apply forward geometric transformation |
transformPointsInverse | Apply inverse geometric transformation |