how to get the contour/shape of a representation in 2D?
7 views (last 30 days)
Show older comments
Jessie Bessel
on 16 Mar 2022
Commented: Star Strider
on 24 Mar 2022
Hello! I have two sets of x and y data that I plot. Following the representation, the result is the following figure.
When I use the plot function for representation, to connect the dots, I get the following result:
But I would be interested in the points being connected so as to create a closed surface, such as a contour or a shape, like in the following image:
Is there a matlab function that could help me in this regard?
I also attach the data in .mat.
Thank you very much!
!! Edit:
I just find out about the matlab function boundary and i use it and obtain the results from the figure. But I am not satisfied with the result because I would like all the points to be connected in one representation. And here, two point are left behind.
0 Comments
Accepted Answer
Star Strider
on 16 Mar 2022
Another approach —
LD1 = load('x.mat');
x = LD1.x;
LD2 = load('y.mat');
y = LD2.y;
cntrd = mean([x(:) y(:)]); % Centroid
angls = atan2(y(:)-cntrd(2), x(:)-cntrd(1)); % Angles Of Each Point W.R.T. Centroid
rads = hypot(y(:)-cntrd(2), x(:)-cntrd(1)); % Distances To Each Point From Centroid
angrad = sortrows([angls rads],1); % Sort Angles & Radii By Angles To Produce Smooth Boundary
angrad = [angrad; angrad(1,:)]; % Close Boundary
xc = (angrad(:,2).*cos(angrad(:,1)))+cntrd(1); % Boundary X-Coordinates
yc = (angrad(:,2).*sin(angrad(:,1)))+cntrd(2); % Boundary Y-Coordinates
figure
scatter(x, y, 10, 'k', 'filled') % Plot Points
hold on
plot(xc, yc, '-r') % Plot Connecting Lines
hold off
grid
axis equal
This should be reasonably robust, although if two points are essentially collinear with respect to their orientation from the centroid (have the same angle, so not all the angles are unique), it could have problems. The solution for that would be to ‘nudge’ the centroid so that all the angles are unique.
.
8 Comments
More Answers (2)
Torsten
on 16 Mar 2022
[k,~] = convhull(P);
plot(P(k,1),P(k,2))
with P being your points as an nx2 matrix.
Simon Chan
on 16 Mar 2022
Point #8 is close to the previous one and you have to break it into 2 parts and combine them manually.
Of course, if the code is used for another combination of points, it does not work.
load('x.mat');
load('y.mat');
x1 = x(1:9); y1 = y(1:9); % Separate at point #8 & #9
x2 = x(8:end); y2 = y(8:end);
k1 = boundary(x1',y1');
k2 = boundary(x2',y2');
pgon1 = polyshape(x1(k1),y1(k1));
pgon2 = polyshape(x2(k2),y2(k2));
pgon = union(pgon1,pgon2); % Union 2 polygons
plot(pgon);
hold on
plot(x,y,'r*')
0 Comments
See Also
Categories
Find more on 2-D and 3-D Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!