selecting a triangle in an array of delaunay points
Ältere Kommentare anzeigen
The code explains it all.
Try to run it, it might give you a good result, but that would be random.
This code is supposed to display a point, and color the nearest triangle green. It does not do this, and gives "nan" errors on seemingly random iterations of the loop.
I would appreciate some help :)
clc;
clear all;
close all;
P = [ 2.5 8.0
6.5 8.0
2.5 5.0
6.5 5.0
1.0 6.5
8.0 6.5];
dt=delaunayTriangulation(P);
triplot(dt);
hold on
%%example functions
dt.Points
dt.ConnectivityList
%abs vals x
a=min(P(:,1))
b=max(P(:,1))
%abs vals y
c=min(P(:,2))
d=max(P(:,2))
for n=1:5
random_x=a + (b-a).*rand(1);
random_y=c + (d-c).*rand(1);
triangleId=pointLocation(dt, random_x,random_y) %select the triangle ID of the triangle closest to the point generated by the random generator
scatter(random_x,random_y) %display the points
%%now... the part that does not work
%%selecting the right triangle and turning it a different color
tri = dt(triangleId, [1:end 1]);
patch(P(tri,1), P(tri,2), 'r', 'LineWidth',1, 'FaceColor','g')
end
6 Kommentare
John D'Errico
am 16 Dez. 2014
I think part of your problem is one of definition.
1. How do you define the nearest triangle? If a point falls inside the triangulation, then the nearest triangle might logically be that triangle which contains the point. What if the point falls outside?
2. Once you have clearly defined what "nearest" means in your context, then how will you implement that?
I don't see the answers to either of these questions in your post, and without those steps you must be stuck.
John D'Errico
am 16 Dez. 2014
Again, that only works if the point is inside the convex hull of your point set.
Note that your set does not fill a rectangle, yet your random point generator choose points from the rectangle that contains your data. So a reasonable fraction of the time, pointLocation will fail. What do you think it returns when it cannot find an enclosing triangle? Read the help, but I don't think you should be surprised.
luc
am 16 Dez. 2014
John D'Errico
am 17 Dez. 2014
My point is, pointLocation will return NaN in that case. SURPRISE!
How often will that event happen? As it turns out, that should happen roughly 21.429% of the time that a point falls outside of your triangulated region, but inside the rectangle that you use to generate the random points.
(1 - (8-2.5)*3/(3*(8-1)))*100
ans =
21.429
luc
am 17 Dez. 2014
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Delaunay Triangulation finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!