matlab

2018-03-27  本文已影响0人  大海一滴写字的地方

透视变换

There is a transformPointsForward function that you can use on your data points. The issue is that they are then defined in world coordinates, not intrinsic coordinates, so you must also use the worldToIntrinsic function, like this:

[B,RB]=imwarp(A,tform);

[xdataT,ydataT]=transformPointsForward(tform,xdata,ydata);

[xdataI,ydataI]=worldToIntrinsic(RB,xdataT,ydataT);

where tform is the output from fitgeotrans and RB is a spacial referencing object.

各种对话框

https://blog.csdn.net/qq_18343569/article/details/46916373

http://blog.sina.com.cn/s/blog_630c70530100j9dj.html

上一篇 下一篇

猜你喜欢

热点阅读