Azzera filtri
Azzera filtri

Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

To find the lower array of black pixels of a word in an image

1 visualizzazione (ultimi 30 giorni)
I want the lower array of black pixels of this word.I know to count the black pixels but how to get the lower array? Please help me. Thank you

Risposte (1)

Walter Roberson
Walter Roberson il 14 Dic 2015
hprof = ~all(YourImage,2);
first_row_with_black = find(hprof, 1, 'first');
last_row_with_black = find(hprof, 1, 'last');
  3 Commenti
Walter Roberson
Walter Roberson il 14 Dic 2015
Change to
hprof = ~all(YourImage,2);
first_row_with_black = find(hprof, 1, 'first')
last_row_with_black = find(hprof, 1, 'last')

Questa domanda è chiusa.

Community Treasure Hunt

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

Start Hunting!

Translated by