Filter löschen
Filter löschen

white ellipse in black background

1 Ansicht (letzte 30 Tage)
tala
tala am 31 Jul. 2017
Kommentiert: tala am 1 Aug. 2017
hi every one.
i'm a beginner in matlab. i need to draw a white ellipse in a black background(512*512) as shown in the picture attached below.
i also have the center and axis of the ellipse.
i just need to implement the equation of ellipse:
if (x-a)2/A2 + (y-b)2/B2<1 assign 1 to pixels inside the ellipse
if (x-a)2/A2 + (y-b)2/B2>=1 assign 0 to pixels outside the ellipse
center of ellipse: (a,b)
A & B: min&max axis of ellipse

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 31 Jul. 2017
Bearbeitet: Walter Roberson am 31 Jul. 2017
[x, y] = meshgrid(1:512, 1:512);
result = (x-a).^2./A.^2 + (y-b).^2./B.^2 < 1;
  2 Kommentare
tala
tala am 1 Aug. 2017
thanks a lot for your answer
tala
tala am 1 Aug. 2017
could you please tell me now how can i rotate this ellipse for example 80 degrees?

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by