Making Triangle in matlab

7 visualizaciones (últimos 30 días)
Wahab Ahmad
Wahab Ahmad el 30 de Abr. de 2020
Respondida: Image Analyst el 18 de Jul. de 2022
How do I make the triangle without plotting function like that?

Respuestas (2)

KSSV
KSSV el 30 de Abr. de 2020
m = 100;
n = 2*m;
I = zeros(m,n) ;
for i = 1:m-1
idx = (n/2-i):(n/2+i) ;
I(i,idx)= 1 ;
end
imshow(I)
  5 comentarios
Wahab Ahmad
Wahab Ahmad el 30 de Abr. de 2020
That code is not works
KSSV
KSSV el 30 de Abr. de 2020
Why it not work? You have to change vertices accordingly.

Iniciar sesión para comentar.


Image Analyst
Image Analyst el 18 de Jul. de 2022
You can use poly2mask
x = [100, 200, 300]; % Left vertex, top vertex, right vertex.
y = [300, 100, 300]; % Left vertex, top vertex, right vertex.
mask = poly2mask(x, y, 400, 400);
imshow(mask);
axis on

Categorías

Más información sobre Labels and Annotations en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by