用二次多项式实现影像相对配准Tpoly = fitgeotrans(movingPoints, fixedPoints, 'polynomial', 2);怎么将原配准影像上的检查点坐标推算到配准后图像上的坐标
时间: 2024-03-07 13:52:48 浏览: 117
影像配准坐标转换
可以使用函数 transformPointsForward(Tpoly, movingPoints) 将原配准影像上的检查点坐标推算到配准后图像上的坐标。其中,Tpoly是通过fitgeotrans函数得到的二次多项式变换矩阵,movingPoints是原影像上的检查点坐标。transformPointsForward函数会返回配准后图像上的坐标。
阅读全文