Uses of Class
imagingbook.common.geometry.mappings.linear.LinearMapping2D
Packages that use LinearMapping2D
Package
Description
-
Uses of LinearMapping2D in imagingbook.common.geometry.mappings.linear
Subclasses of LinearMapping2D in imagingbook.common.geometry.mappings.linearModifier and TypeClassDescriptionclass
This class represents an affine transformation in 2D, which can be defined by three pairs of corresponding points.class
This class represents a projective transformation in 2D (also known as a "homography").class
This class represents a pure 2D rotation about the coordinate origin (as a special case of affine mapping).class
This class represents a 2D scaling transformation (as a special case of affine transformation).class
This class represents a 2D shear transformation (as a special case of affine transformation).class
This class represents a pure 2D translation (as a special case of affine transformation).Methods in imagingbook.common.geometry.mappings.linear that return LinearMapping2DModifier and TypeMethodDescriptionLinearMapping2D.concat
(LinearMapping2D B) Concatenates this mapping A with another linear mapping B and returns a new mapping C, such that C(x) = B(A(x)).static LinearMapping2D
LinearMapping2D.concatenate
(LinearMapping2D... AA) Concatenates a sequence of linear mappings AA = (A1, A2, ..., An), with the result A(x) = A1(A2(...(An(x))...)).LinearMapping2D.duplicate()
Returns a copy of this mapping.LinearMapping2D.getInverse()
Calculates and returns the inverse mapping.Methods in imagingbook.common.geometry.mappings.linear with parameters of type LinearMapping2DModifier and TypeMethodDescriptionLinearMapping2D.concat
(LinearMapping2D B) Concatenates this mapping A with another linear mapping B and returns a new mapping C, such that C(x) = B(A(x)).static LinearMapping2D
LinearMapping2D.concatenate
(LinearMapping2D... AA) Concatenates a sequence of linear mappings AA = (A1, A2, ..., An), with the result A(x) = A1(A2(...(An(x))...)).static boolean
AffineMapping2D.isAffine
(LinearMapping2D map) Checks if the given linear mapping could be affine, i.e.Constructors in imagingbook.common.geometry.mappings.linear with parameters of type LinearMapping2DModifierConstructorDescriptionCreates a new linear mapping from an existing linear mapping.Creates a projective mapping from any linear mapping. -
Uses of LinearMapping2D in imagingbook.common.image.matching.lucaskanade
Methods in imagingbook.common.image.matching.lucaskanade with parameters of type LinearMapping2DModifier and TypeMethodDescriptionImageExtractor.extractImage
(int width, int height, LinearMapping2D T) Extracts a sub-image of sizewidth
xheight
from the source imageI
(referenced bythis
ImageExtractor
), using the specified transformation.void
ImageExtractor.extractImage
(ImageProcessor R, LinearMapping2D T) Fills the imageR
from the source imageI
(referenced bythis
object).