필터 지우기
필터 지우기

how to get the contour/shape of a representation in 2D?

조회 수: 8 (최근 30일)
Jessie Bessel
Jessie Bessel 2022년 3월 16일
댓글: Star Strider 2022년 3월 24일
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.

채택된 답변

Star Strider
Star Strider 2022년 3월 16일
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
Jessie Bessel
Jessie Bessel 2022년 3월 24일
@Star Strider thank you very much. It is clear now for me. You helped me a lot!
Star Strider
Star Strider 2022년 3월 24일
As always, my pleasure!

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Torsten
Torsten 2022년 3월 16일
[k,~] = convhull(P);
plot(P(k,1),P(k,2))
with P being your points as an nx2 matrix.
  댓글 수: 2
Jessie Bessel
Jessie Bessel 2022년 3월 16일
Thank you for the answer, but I don't think it helps me much. It remains points that are not interconnected in the representation.
Torsten
Torsten 2022년 3월 16일
편집: Torsten 2022년 3월 16일
If you order the points in x,y arrays in the sequel they should be connected by lines, MATLAB will plot correctly, e.g.
x = [1 2 4 1 ]
y = [3 6 8 3 ]
plot(x,y)

댓글을 달려면 로그인하십시오.


Simon Chan
Simon Chan 2022년 3월 16일
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*')

카테고리

Help CenterFile Exchange에서 Contour Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by