How can i find co-ordinates (x,y) of white lines in the image?

1 visualizzazione (ultimi 30 giorni)
I have image with black background and white lines. How to find co-ordinates (x,y) of white lines on that image?
  2 Commenti
William
William il 30 Nov 2015
how is the data representing black and white. 0's and 1's?. What format is the image in?
LAKSHMANAN ADAIKKAPPAN
LAKSHMANAN ADAIKKAPPAN il 30 Nov 2015
Yes, the data representing black and white by 0's and 1's. The format of the image is JPG file.

Accedi per commentare.

Risposte (2)

Thorsten
Thorsten il 30 Nov 2015
[y, x] = ind2sub(size(I), find(I > 0));

Walter Roberson
Walter Roberson il 30 Nov 2015
You will have difficulty finding the location of the lines. JPG images cannot handle sharp edges, so although the data may look like it is just white and black, you will find that it has a number of other values as well, similar to as if the image had been anti-aliased. JPG is a poor format for image analysis.

Categorie

Scopri di più su Image Processing Toolbox in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by