Borrar filtros
Borrar filtros

How to count the number of black pixels in each row & column seperately?

1 visualización (últimos 30 días)
swathi
swathi el 27 de Ag. de 2018
Comentada: swathi el 28 de Ag. de 2018
Hello Sir, I would want to analyze signature based on various features. For this, I need to obtain different features. One would be obtaining the row & highest black pixels & column with highest black pixels. Could you please tell me how can I use histogram to do this? I have binary image of signature.
  3 comentarios
KALYAN ACHARJYA
KALYAN ACHARJYA el 27 de Ag. de 2018
Editada: KALYAN ACHARJYA el 27 de Ag. de 2018
The histogram does not relate with spatial (Position) coordinates.
Second Part:
obtaining the row & highest black pixels & column with highest black pixels. You can proceed the following way
rows_num(i)=sum(k2(i,:));
% find the minimummvalue of rows_num, decided the i(row number)

Iniciar sesión para comentar.

Respuestas (1)

dpb
dpb el 27 de Ag. de 2018
x is the image array...
[rmax,rloc]=max(sum(x));
[cmax,cloc]=max(sum(x,2));

Categorías

Más información sobre Histograms en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by