how to get outline of multiple shapes
3 次查看(过去 30 天)
显示 更早的评论
Hi,
I have asked about it before
but the answer did not fit all my data, so I need help on this one too.
I have multiple shapes I need to merge into a single shape, because I have sets of shapes those I have to merge and compare with each other (put into a one plot). the set of data is attached and I can plot it like this:
plot(X(:, [1:end 1])', Y(:, [1:end 1])')
let me know, if you know how to do it, thanks.
2 个评论
Image Analyst
2023-12-18
Do you require them to be shape objects or can the answer be a digital image?
采纳的回答
更多回答(1 个)
Sulaymon Eshkabilov
2023-12-19
Maybe you want to get something like this shape, e.g.:
load('Data.mat')
for ii=1:height(X)
PGON = polyshape(X(ii,:),Y(ii,:),'Simplify',true);
plot(PGON)
hold on
end
xlim([-3 3])
ylim([0, 0.2])
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!