Normal vector of line based on pixel coordinates
조회 수: 2 (최근 30일)
이전 댓글 표시
I have an array that contains the x,y pixel coordinates of edges in an image. I want to use three of these coordinates at a time to work out the angle, and then obtain 5 or 10 pixel values that are located 90 degrees of this line.
For vertical and horizontal lines this is simple, as the pixel values corresponding to 90 degrees are either left/right or up/down in a straight line. For diagonal lines, I can just as easily take the diagonal values. However, how can I do this if the line is, say, 30 degrees or something more obtuse of 90 degrees?
댓글 수: 0
답변 (2개)
Image Analyst
2011년 9월 28일
Use polyfit().
댓글 수: 2
Image Analyst
2011년 9월 28일
I've done this before. Basically get the coordinates along your curve that you want to fit a polynomial to then pass them plus the order of the polynomial (1 for a line) into polyfit. This will give you the slope and intercept. The slope of the perpendicular is -1/slope. Then use the point slope formula to get the slope of the new perpendicular line that goes through your point. Then use simple trig or algebra to get the endpoints of that line. Then you can use improfile to get equal spaced samples along that line (you specify the number of samples you want and improfile figures out what fractional pixel locations to extract them from). Hope that helps.
참고 항목
카테고리
Help Center 및 File Exchange에서 Splines에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!