How can I find intersection between edge and lines?
Show older comments

Dear Experts, I'm trying to find intersection between the lines and edge. I generated the lines separately to can find the nearest edge to the center. My final goal is the coordination of the edges which intersect the lines. Any body has a solution for this? This is my code (Xcenter and Ycenter were determined): Iedge = edge(BWc,'canny'); theta=[0:0.1:2*pi]; x=fix(Xcenter+10*cos(theta)); y=fix(Ycenter+10*sin(theta)); line(x,y) but I don't know what I should do to find the intersections.
Answers (2)
Image Analyst
on 24 Nov 2016
0 votes
Please read Steve's blog on the subject: http://blogs.mathworks.com/steve/2016/04/12/intersecting-curves-that-dont-intersect/
Categories
Find more on Object Analysis in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!