2

我想使用以下代码裁剪图像。但我希望用户只能选择具有预定义 x/y 比率的裁剪区域。例如,如果 x=2,y=2,则用户只能使用鼠标选择具有 (x/y)=1 比率的区域。

I = imread('image.jpg');
[rows columns numberOfColorBands] = size(I);
I2 = imcrop(I);
imshow(I), figure, imshow(I2)
4

1 回答 1

3

您可以使用 imrect 生成坐标,然后将它们传递给 imcrop。

figure, imshow(I);
h = imrect(gca,[10 10 100 100]); 
setFixedAspectRatio(h,1); % this fixes the aspect ratio; user can now change size/position
position = wait(h); % returns coordinates in "position" when user doubleclicks on rectangle
I2 = imcrop(I,position);
figure, imshow(I2);

在实际代码中,您必须将 [10 10 100 100] 替换为适合图像大小/纵横比的内容。您可能希望向 imrect 添加其他约束(例如,阻止用户将矩形移动到实际图像之外)。

于 2013-05-22T16:55:50.957 回答