i was given a an image with black lines on white background . what i need to do is, to find the coordinates of the edges at the intersection of black lines..can u plz suggest a way to start with....plzz

 Respuesta aceptada

Threshold. If you want to find centroids of the crossing points, skeletonize with bwmorph(), then find crossing points with bwmorph().
If you have thick lines and want to find the "edges" of the intersection you need to define that. Do you mean just the 4 coordinates at the corners? Or do you mean the quadrilateral of all 4 straight edges where the two thick lines cross? How thick are these lines? Why do you want the edges instead of the center coordinate of where they cross?
You forgot to attach your image. Please do so.

2 comentarios

what i mean is the coordinates of points at which horizontal and vertical lines meet ...
The attached file will get you 95% of the way there. I didn't do the last 5% because I think this may be a homework assignment and you need to do something on it.

Iniciar sesión para comentar.

Más respuestas (1)

Matt J
Matt J el 22 de Sept. de 2013
Editada: Matt J el 22 de Sept. de 2013
As a start, the following will separate the image into a binary image H of horizontal lines and V of vertical lines.
A=double(rgb2gray(imread('sid.png'))<10);
e=ones(1,7);
H=conv2(A,e,'same')>3;
V=conv2(A,e.','same')>3;

3 comentarios

that is fine thank u ..but i need function to find the coordinate values...
Matt J
Matt J el 22 de Sept. de 2013
Editada: Matt J el 22 de Sept. de 2013
Yes. I gave you the first step. Neither I, nor Image Analyst, nor anyone else here, I believe, will give you the whole thing. But... consider the FIND command.

Iniciar sesión para comentar.

Categorías

Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by