1

我正在使用 MATLAB R2012a,我试图让用户在不使用内置函数的情况下裁剪图像。

这是我的代码:

[x, y] = ginput(2);
m1 = [x(1), y(1)];
m2 = [x(2), y(2)];
m1 = int16(m1);
m2 = int16(m2);
[m, n] = size(manip);
s1 = (m2(1) - m1(1))+1;
s2 = (m2(2) - m2(2))+1;
temp = zeros([s1, s2],('uint8'));
p1 = 0;
p2 = 0;
for c1 = 1:m
    if ((c1 <= m1(2)) && (c1 >= m2(2)))
        for c2 = 1:n
            if ((c2 <= m1(1)) && (c2 >= m2(1)))
                temp(p1, p2) = manip(c1, c2);
            end
            p2 = p2 + 1;
        end
    end
    p1 = p1 + 1;
end
out = temp;



这是我的结果:
种植结果

关于我做错了什么的任何想法,我似乎都能看到。谢谢。

4

1 回答 1

1

我想你的错误就在这里:s2 = (m2(2) - m2(2))+1;这不应该s2 = (m2(2) - m1(2))+1;吗?

但是,您根本不需要该循环:

Iold = rand(300);
%crop 10 pixels off each side
Inew = Iold(11:end - 10, 11: end - 10);

或者,如果您需要相同大小但裁剪位为零的图像:

Inew = zeros(size(Iold));
Inew(11:end - 10, 11: end - 10) = Iold(11:end - 10, 11: end - 10);    

或概括它:

Inew(xmin:xmax, ymin:ymax) = Iold(xmin:xmax, ymin:ymax);
于 2013-04-26T06:17:23.607 回答