Borrar filtros
Borrar filtros

Grey Level Histogram of IMAGE

7 visualizaciones (últimos 30 días)
Algorithms Analyst
Algorithms Analyst el 17 de Oct. de 2012
Can any one tell me how to calculate the grey level histogram of image without using direct function in matlab imhist?

Respuesta aceptada

Image Analyst
Image Analyst el 17 de Oct. de 2012
Loop over every pixel. For each pixel, get the gray level. The gray level is an index to your "counts" array. Increment that element by one. Details are left up to you.
  4 comentarios
Image Analyst
Image Analyst el 17 de Oct. de 2012
The gray level is the array's value. No need for B. I should be called rgbImage to be more clear and help distinguish I from l and 1, which are hard to tell apart in most fonts. Use grayImage instead of A - again because it's a much more clear and descriptive variable name.
grayImage = rgb2gray(I);
for column = 1 : N
for row = 1 : M
grayLevel = grayImage(row, column);
See if you can take it from there...
Algorithms Analyst
Algorithms Analyst el 18 de Oct. de 2012
Tyhank you very much for your help...

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by