how to do horizontal projection histogram of an image

2 visualizaciones (últimos 30 días)
DB
DB el 17 de Feb. de 2017
Comentada: Rik el 21 de Feb. de 2017
Can any one tell me how to do horizontal projection histogram of an image

Respuesta aceptada

Rik
Rik el 17 de Feb. de 2017
You mean something like this?
A=imread('pout.tif');%load image
A=mean(A,1);%get the mean (or use sum or max) - these convert the data to double
histogram(A)%generate histogram
  2 comentarios
DB
DB el 21 de Feb. de 2017
Thank you sir ,
I got histogram but how to project the horizontal projection of an image particularly this image
can you please tell me how to do it ....?
Rik
Rik el 21 de Feb. de 2017
There are 3 possibilities for a horizontal projection: a mean, a maximum value and a sum. The mean and the sum differ only in magnitude (and both convert your data to double). The projection convert your 2D image to a 1D signal, so you can use something like bar(A) or plot(A).

Iniciar sesión para comentar.

Más respuestas (0)

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