资源简介

在MATLAB文件夹中加入图片即可进行柱面投影,对X和Y轴进行变换。

资源截图

代码片段和文件信息

I = imread(‘timg.jpg‘);
[height width depth] = size(I);
A = I;
centerX = width / 2;
centerY = height / 2;
% alpha = pi / 4;
f = width / (2 * tan(pi/4/2));
for i = 1 : width
for j = 1 : height
theta = asin((i - centerX) / f);
pointX = int32(f * tan((i - centerX) / f) + centerX);
point

评论

共有 条评论