why when drawing houghlines with plot draws a different line than manually drawing a line?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello, I'm detecting lines in an image using houghlines function which returns me the two points of the detected line. when I'm using the Matlab plot function the line is drawn precisely where it should be, but when I try to draw it in a loop the start and end points are wrong and don't just away by 20 columns but the start is far to one side and the end is to the other.
thanks in advance :) .
0 commentaires
Réponses (1)
Image Analyst
le 25 Nov 2017
We can only guess since you're not sharing your code. My guess is that you made the all too common beginner mistake of thinking (x,y) is (row, column). It is NOT. (x,y) is (column, row) and (row, column) is (y, x). Make sure you know which you are using.
The other option is that you were plotting in a different/new axes where the y axis is flipped. Remember, for images, y is 1 at the top and increases going down and for plots, y increases going upwards.
Voir également
Catégories
En savoir plus sur Annotations dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!