Estimate geometric transformation from matching point pairs
Computer Vision Toolbox / Geometric Transformations
Use the Estimate Geometric Transformation block to find the transformation matrix which maps the greatest number of point pairs between two images. A point pair refers to a point in the input image and its related point on the image created using the transformation matrix. You can select to use the RANdom SAmple Consensus (RANSAC) or the Least Median Squares algorithm to exclude outliers and to calculate the transformation matrix. You can also use all input points to calculate the transformation matrix.
Pts1
— Point coordinatesPoint coordinates, specified as an M-by-2 matrix of one-based [x y] point coordinates, where M represents the number of points.
The block outputs the same data type for the transformation matrix as the Pts1 and Pts2 image points.
Data Types: single
| double
| int8
| int16
| int32
| uint8
| uint16
| uint32
Pts2
— Point coordinatesPoint coordinates, specified as an M-by-2 matrix of one-based [x y] point coordinates, where M represents the number of points.
The block outputs the same data type for the transformation matrix as the Pts1 and Pts2 image points.
Data Types: single
| double
| int8
| int16
| int32
| uint8
| uint16
| uint32
Num
— Number of valid pointsNumber of valid points to find in Pts1 and Pts2, specified as a scalar. This port appears when you enable the Allow variable-size signal input parameter.
Data Types: int8
| int16
| int32
| uint8
| uint16
| uint32
TForm
— TransformationTransformation, returned as either a 3-by-2 or a 3-by-3 matrix. The block outputs the same data type for the transformation matrix as the Pts1 and Pts2 image points.
When Pts1 and Pts2 are single or double, the output transformation matrix will also have single or double data type.
When Pts1 and Pts2 images are
built-in integers, the option is available to set the transformation matrix data
type to either Single
or Double
.
Data Types: single
| double
Inlier
— Points usedPoints used to calculate TForm
, returned as an
M-by-1 vector.
The Inlier port appears when you enable the Output Boolean signal indicating which point pairs are inliers parameter.
Data Types: Boolean
Transformation type
— Transformation typeAffine
(default) | Nonreflective similarity
| Projective
Specify the transformation type as either Nonreflective
similarity
, Affine
, or
Projective
. See Transformations for a
more detailed discussion.
You can set additional parameters depending on the transformation type:
For Projective
transformation, you can specify a
scalar algebraic distance threshold for determining inliers.
For Affine
or Projective
transformation, you can specify the distance threshold for determining inliers in
pixels.
Find and exclude outliers
— Find and exclude outliersEnable to find and exclude outliers from the input points and use only the inlier points to calculate the transformation matrix. When you turn this parameter off, all input points are used to calculate the transformation matrix.
Method
— Method to find outliersRANdom SAmple Consensus (RANSAC)
(default) | Least Median of Squares
Select the method to find outliers as either RANdom SAmple Consensus
(RANSAC)
or Least Median of Squares
See RANSAC and Least Median Squares Algorithms for a more detailed
discussion.
This parameter appears when you enable the Find and exclude outliers check box.
Algebraic distance threshold for determining inliers
— Algebraic distance threshold for determining inliersSpecify a scalar threshold value for determining inliers. The threshold controls the upper limit used to find the algebraic distance in the RANSAC algorithm.
This parameter appears when you set the Method parameter to
Random Sample Consensus (RANSAC)
and the
Transformation type parameter to
Projective
.
Distance threshold for determining inliers (in pixels)
— Distance threshold for determining inliers (in pixels)1.5
(default) | scalarSpecify the upper limit distance a point can differ from the projection location of its corresponding point.
This parameter appears when you set the Method parameter to
Random Sample Consensus (RANSAC)
and you set the value of
the Transformation type parameter to Nonreflective
similarity
or Affine
.
Determine number of random samplings using
— Determine number of random samplings usingSpecified value
(default) | Desired confidence
Select Specified value
to enter a positive integer value
for the number of random samplings. Select Desired
confidence
to set the number of random samplings as a percentage and a
maximum number.
This parameter appears when you select the Find and exclude
outliers check box, and you set the value of the
Method parameter to Random Sample Consensus
(RANSAC)
.
Number of random samplings
— Number of random samplings500
(default) | scalarSpecify the number of random samplings for the algorithm to perform.
This parameter appears when you set the value of the Determine number of
random samplings using parameter to Specified
value
.
Desired confidence (in %)
— Desired confidence (in %)99
(default) | scalarSpecify a percent desired confidence by entering a number between
0
and 100
. The value represents the probability
of the algorithm to find the largest group of points that can be mapped by a
transformation matrix.
This parameter appears when you set the Determine number of random
samplings using parameter to Desired
confidence
.
Maximum number of random samplings
— Maximum number of random samplings1000
(default) | integerSpecify an integer number for the maximum number of random samplings.
This parameter appears when you set the Method parameter to
Random Sample Consensus (RANSAC)
and you set the value of
the Determine number of random samplings using parameter to
Desired confidence
.
Stop sampling earlier when a specified percentage of point pairs are determined to be inlier
— Stop samplingEnable this parameter to stop random sampling when a percentage of input points have been found as inliers.
This parameter appears when you set the Method parameter to
Random Sample Consensus (RANSAC)
.
Perform additional iterative refinement of the transformation matrix
— Perform additional iterative refinementSpecify whether to perform refinement on the transformation matrix.
This parameter appears when you select Find and exclude outliers check box.
Output Boolean signal indicating which point pairs are inliers
— Output Boolean signalEnable this parameter to output the inlier point pairs that were used to calculate the transformation matrix.
This parameter appears when you select the Find and exclude outliers check box.
The block will not use this parameter with signed or double, data type points.
When Pts1 and Pts2 are built-in integers, set transformation matrix date type to
— Set transformation matrix date typeSingle
(default) | Double
Specify transformation matrix data type as Single
or
Double
when the input points are built-in integers.
The block will not use this parameter with signed or double, data type points.
Allow variable-sized signal input
— Allow variable-sized signal inputEnable this parameter to allow variable-sized signal input.
The RANSAC algorithm relies on a distance threshold. A pair of points, (image a, Pts1) and (image b, Pts2) is an inlier only when the distance between and the projection of based on the transformation matrix falls within the specified threshold. The distance metric used in the RANSAC algorithm is as follows:
The Least Median Squares algorithm assumes at least 50% of the point pairs can be mapped by a transformation matrix. The algorithm does not need to explicitly specify the distance threshold. Instead, it uses the median distance between all input point pairs. The distance metric used in the Least Median of Squares algorithm is as follows:
For both equations:
is a point in image a
(Pts1
)
is a point in image b
(Pts2
)
is the projection of a point on image a based on transformation matrix H
is the distance between two point pairs on image b
is the threshold
is the number of points
The smaller the distance metric, the better the transformation matrix and therefore the more accurate the projection image.
The Estimate Geometric Transformation block supports Nonreflective
similarity
, Affine
, and
Projective
transformation types, which are described in this
section.
Nonreflective similarity transformation supports translation, rotation, and isotropic scaling. It has four degrees of freedom and requires two pairs of points.
The transformation matrix is:
The projection of a point by is:
affine transformation supports nonisotropic scaling in addition to all transformations that the nonreflective similarity transformation supports. It has six degrees of freedom that can be determined from three pairs of noncollinear points.
The transformation matrix is:
The projection of a point by is:
Projective transformation supports tilting in addition to all transformations that the affine transformation supports.
The transformation matrix is :
The projection of a point by is represented by homogeneous coordinates as:
For computational simplicity and efficiency, this block uses algebraic distance. The algebraic distance for a pair of points, on image a, and on image b , according to transformation is defined as follows;
For projective transformation:
, where
For Nonreflective similarity or affine transformation: ,
where
The block performs a comparison and repeats it K number of times between successive transformation matrices. If you select the Find and exclude outliers option, the RANSAC and Least Median Squares (LMS) algorithms become available. These algorithms calculate and compare a distance metric. The transformation matrix that produces the smaller distance metric becomes the new transformation matrix that the next comparison uses. A final transformation matrix is resolved when either:
K number of random samplings is performed
The RANSAC algorithm, when enough number of inlier point pairs can be mapped, (dynamically updating K)
The Estimate Geometric Transformation algorithm follows these steps:
A transformation matrix is initialized to zeros
Set count = 0
(Randomly sampling).
While count < K
, where K
is total number
of random samplings to perform, perform the following;
Increment the count; count = count + 1
.
Randomly select pair of points from images a and b, (2 pairs for Nonreflective similarity, 3 pairs for affine, or 4 pairs for projective).
Calculate a transformation matrix , from the selected points.
If has a distance metric less than that of , then replace with .
(Optional for RANSAC algorithm only)
Update K
dynamically.
Exit out of sampling loop if enough number of point pairs can be mapped by .
Use all point pairs in images a and b that can be mapped by to calculate a refined transformation matrix
Iterative Refinement, (Optional for RANSAC and LMS algorithms)
Denote all point pairs that can be mapped by as inliers.
Use inlier point pairs to calculate a transformation matrix .
If has a distance metric less than that of , then replace with , otherwise exit the loop.
The number of random samplings can be specified by the user for the RANSAC and Least Median Squares algorithms. You can use an additional option with the RANSAC algorithm, which calculates this number based on an accuracy requirement. The Desired Confidence level drives the accuracy.
The calculated number of random samplings, K used with the RANSAC algorithm, is as follows:
where
p is the probability of independent point pairs belonging to the largest group that can be mapped by the same transformation. The probability is dynamically calculated based on the number of inliers found versus the total number of points. As the probability increases, the number of samplings, K , decreases.
q is the probability of finding the largest group that can be mapped by the same transformation.
s is equal to the value 2, 3, or 4 for Nonreflective similarity, affine, and projective transformation, respectively.
The transformation matrix calculated from all inliers can be used to calculate a refined transformation matrix. The refined transformation matrix is then used to find a new set of inliers. This procedure can be repeated until the transformation matrix cannot be further improved. This iterative refinement is optional.
[1] R. Hartley and A. Ziserman, “Multiple View Geometry in Computer Vision,” Second edition, Cambridge University Press, 2003