dashed line imrect of imline
2 ビュー (過去 30 日間)
古いコメントを表示
Hi everyone,
I'm trying to make a rectangle to define a region of interest in an image. I used the imrect function in Matlab. Now I want to make a dashed line of the top, bottom and right line of this rectangle, the left one should still be continuous. I wanted to do this with imline, but I don't know how to make this line dashed. I can't use the line function, because the rectangle has to be draggable and reseizable.
I hope someone can help me with this problem.
Thanks in advance.
Ellen
0 件のコメント
採用された回答
Spandan Tiwari
2013 年 10 月 11 日
編集済み: Spandan Tiwari
2013 年 10 月 11 日
Something like this would help you make a dashed line using imline .
h = imline();
h1 = get(h,'Children');
set(h1(3),'LineStyle','--');
set(h1(4),'LineStyle','--');
0 件のコメント
その他の回答 (2 件)
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!