2.2
2.2
图像的几何变换
图像的几何变换
二维投影变换可以把一幅图像按照近大远小的投
影规律投影到一个平面上,从而产生立体的效果。
【例】使用 imtransform 函数实现图像的二维投影变换
figure(2)
transformtype = 'projective'; % 投影变换
transformmatrix = [ 1.1581 0 0;
-0.4228 0.6066 -0.0074;
4.2279 4.3566 1.0000 ];
% transformmatrix =[0.8 0 0; -0.2 0.8 -0.003;
3.5 1.5 1.5];
T = maketform(transformtype ,transformmatrix);
I = imread('cameraman.tif');
nI = imtransform(I,T);
subplot(1,2,1),imshow(I)
subplot(1,2,2),imshow(nI)