Draw multiple circles in one image

13 ビュー (過去 30 日間)
Latifa Bouguessaa
Latifa Bouguessaa 2022 年 7 月 27 日
コメント済み: Walter Roberson 2022 年 8 月 12 日
Hello, everyone,
I need your help. I wanted to draw several circles in one picture and edit them later. Attached is a screen shot. thank you for your help
Latifa

採用された回答

KSSV
KSSV 2022 年 7 月 27 日
編集済み: KSSV 2022 年 7 月 27 日
R = 2:2:10 ;
th = linspace(0,2*pi) ;
figure
hold on
for i = 1:length(R)
x = R(i)*cos(th) ;
y = R(i)*sin(th) ;
plot(x,y)
end
axis equal
  9 件のコメント
Image Analyst
Image Analyst 2022 年 8 月 12 日
I have no idea what you want to do. All professional programmers put comments into their code. Where are yours? Explain every section or line of your code up until the plotting part.
Walter Roberson
Walter Roberson 2022 年 8 月 12 日
You cannot reliably recreate the roi given just the subimage and comparing it to 0, as interior pixels could be 0.
You could, it is true, take the subimage and fit a circle to it to recreate the roi.
But if you are going to need the roi later, just record the mask variables as well, it saves a lot of trouble.

サインインしてコメントする。

その他の回答 (0 件)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by