how to draw a irregular shape ?

22 次查看(过去 30 天)
help me drawing a ir regular shape

回答(2 个)

Star Strider
Star Strider 2016-2-2
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
Image Analyst 2016-2-2
Try imfreehand(). See attached demos.

类别

Help CenterFile Exchange 中查找有关 Elementary Polygons 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by