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!