Azzera filtri
Azzera filtri

How to extract coordinates from the pattern

1 visualizzazione (ultimi 30 giorni)
Balaji M. Sontakke
Balaji M. Sontakke il 26 Ott 2016
Risposto: Thorsten il 26 Ott 2016
Dear sir, i would like to extract all coordinates (white pixels) from the attached image. plz help to sort out, thanks in advance

Risposte (1)

Thorsten
Thorsten il 26 Ott 2016
white = 1; % or 255, depending on the format of your image
[cy, cx] = ind2sub(size(I), find(I==1));

Community Treasure Hunt

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

Start Hunting!

Translated by