How to find the vertices of a trinagle given points on the triangle?
Show older comments
I have been given 6 points where 2 points define a side of the trianglee. how can I obtain the vertices of triangle?
Answers (2)
Matt J
on 28 May 2014
0 votes
Meaning the 6 points consist of duplicates of the vertices? If so, this looks applicable
If S is a 6x2 matrix such that each pair of consecutive rows S(i,:) and S(i+1,:) are points on one side of the triangle, then you can use qlcon2vert ( Available Here ) as follows,
x0=mean(S).'; %interior point
A=[S(2,:)-S(1,:); S(4,:)-S(3,:); S(6,:)-S(5,:)]*[0 -1; 1 0];
b=sum(A.*S(1:2:end,:),2);
D=diag(sign(b-A*x0));
A=D*A; b=D*b;
Vertices=qlcon2vert(x0,A,b)
Categories
Find more on Convert Image Type 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!