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 TypeClassDescriptionclassThis class represents an affine transformation in 2D, which can be defined by three pairs of corresponding points.classThis class represents a projective transformation in 2D (also known as a "homography").classThis class represents a pure 2D rotation about the coordinate origin (as a special case of affine mapping).classThis class represents a 2D scaling transformation (as a special case of affine transformation).classThis class represents a 2D shear transformation (as a special case of affine transformation).classThis 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 LinearMapping2DLinearMapping2D.concatenate(LinearMapping2D... AA) Concatenates a sequence of linear mappings AA = (A1, A2, ..., An), with the result A(x) = A1(A2(...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 LinearMapping2DLinearMapping2D.concatenate(LinearMapping2D... AA) Concatenates a sequence of linear mappings AA = (A1, A2, ..., An), with the result A(x) = A1(A2(...static booleanAffineMapping2D.isAffine(LinearMapping2D map) Checks if the given linear mapping could be affine, i.e. if the bottom row of its transformation matrix is (0, 0, 1).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 sizewidthxheightfrom the source imageI(referenced bythisImageExtractor), using the specified transformation.voidImageExtractor.extractImage(ImageProcessor R, LinearMapping2D T) Fills the imageRfrom the source imageI(referenced bythisobject).