标签: matlab matrix matlab-cvst least-squares matrix-transform
我尝试使用命令estimateGeometricTransform或fitgeotrans,但它返回了类affine2d的对象,我需要的是生成可以绘制的转换矩阵。
estimateGeometricTransform
fitgeotrans
affine2d
有没有具体的命令?
答案 0 :(得分:0)
affine2d类有一个属性T,其中包含转换矩阵。
T
tform = estimateGeometricTransform(...) tform.T % prints the transformation matrix