Finding Angle between lines
Afficher commentaires plus anciens
i need to find an angle between lines
has in the image
whats i do
Consider some random vector points

4 commentaires
Image Analyst
le 24 Déc 2018
What do you have? Endpoint coordinates of each of the line segments? An image with all that stuff on there?
OriAlpha
le 24 Déc 2018
Image Analyst
le 25 Déc 2018
I doubt you have both. What created that image?
And I'm not going to do an image processing example if you have the endpoints in a vector and can do a simple math thing like the answer below (scroll down).
OriAlpha
le 25 Déc 2018
Réponses (2)
zb li
le 25 Déc 2018
Modifié(e) : madhan ravi
le 25 Déc 2018
A(a,b) B(c,d) C(e,f)
AB = (c-a,d-b),BC = (e-c,f-d)
cosABC = AB*BC/|AB|*|BC| = (c-a,d-b)*(e-c,f-d)/|(c-a,d-b)|*|(e-c,f-d)|
so , acos(cosABC)*180/pi
1 commentaire
OriAlpha
le 25 Déc 2018
Image Analyst
le 25 Déc 2018
0 votes
Catégories
En savoir plus sur Mathematics and Optimization dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!