cv.estimateAffine3D - MATLAB File Help
cv.estimateAffine3D

Computes an optimal affine transformation between two 3D point sets

M = cv.estimateAffine3D(src, dst)
[M, inliers] = cv.estimateAffine3D(...)
[...] = cv.estimateAffine3D(..., 'OptionName', optionValue, ...)

Input

Output

Options

It computes:

[x; y; z] = [a11 a12 a13; a21 a22 a23; a31 a32 a33] * [X; Y; Z] + [b1; b2; b3]

The function estimates an optimal 3D affine transformation between two 3D point sets using the RANSAC algorithm.

See also