how can chose a fix rectangular in series of images that position may be changeable?
1 次查看(过去 30 天)
显示 更早的评论
I have to extract the rectangle for a seris of images that the size of rectangular is 30*30 but the position of rectangular is changeable in every images. Is there any way? I know that I can use imcrop and getrect. but these command need xmin,ymin position. I just need to fix xwith and ywitd. Is there any way?
0 个评论
回答(2 个)
Thomas Koelen
2015-4-29
imshow('pout.tif')
h=imrect(gca,[0 0 30 30]);
wait(h)
Gives you a draggable rectangle with xwidth and ywidth of 30.
5 个评论
Image Analyst
2015-4-29
Cut? What does that mean? And do you need to have the width be 30 after the user is done with it, or will you take whatever he made it?
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Display and Exploration 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!