how to draw a irregular shape ?
Afficher commentaires plus anciens
help me drawing a ir regular shape
Réponses (2)
Star Strider
le 2 Fév 2016
Here is one way:
N= 12; % Number Of Sides To Polygon
a = sort(rand(N,1))*2*pi;
r = randi(9, N, 1);
x = cos(a).*r;
y = sin(a).*r;
figure(1)
plot([x; x(1)], [y; y(1)])
This creates a randomly-shaped polygon. Change it to produce the sort of shape you want.
Image Analyst
le 2 Fév 2016
1 vote
Try imfreehand(). See attached demos.
Catégories
En savoir plus sur Computational Geometry dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!