- How to Delete Rectangles with Loops: https://jp.mathworks.com/matlabcentral/answers/296175-how-to-delete-rectangles-with-loops
rectangle で描出した四角形を削除することができますか?
9 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Tsubasa Mawatari
le 5 Sep 2018
Réponse apportée : SA.SEKINO
le 26 Juil 2024
rectangleで一度描出した四角形を削除することはできますか?
0 commentaires
Réponse acceptée
mizuki
le 5 Sep 2018
はい、可能です。例えば以下のようなコードで四角形を描きます。
figure;
h = rectangle('Position',[1 2 5 6])
axis([0 10 0 10])
その後、rectangle のハンドル(図のプロパティと呼ばれる情報を保持しているオブジェクト)を delete 関数で消すことができます。
detele(h)
Plus de réponses (1)
SA.SEKINO
le 26 Juil 2024
rectangleで描画した場合は、findobj関数とdelete関数を組み合わせて消すことができます。
delete(findobj('Type','Rectangle'))
drawrectangle(ROI関心領域)で描画した場合も同様に消すことができます。
delete(findobj('Type','images.roi.rectangle'))
0 commentaires
Voir également
Catégories
En savoir plus sur ラベルと注釈 dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!