Image box or rectangle color
2 ビュー (過去 30 日間)
古いコメントを表示
I want to drag a rectangle on image and set color of edges of rectangle. How to start?
0 件のコメント
採用された回答
Khalid Mahmood
2021 年 5 月 29 日
I hope you want this
set(gcf,'Units','normalized')
im=imread('peppers.png');
imshow(im);
k = waitforbuttonpress;
rect_pos = rbbox;
annotation('rectangle',rect_pos,'Color','red')
2 件のコメント
その他の回答 (0 件)
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!