Borrar filtros
Borrar filtros

how to calculate intensity of an image

1 visualización (últimos 30 días)
Elysi Cochin
Elysi Cochin el 6 de Feb. de 2013
i wanted to calculate intensity of an image... please could someone help me.....
  1 comentario
vipul utsav
vipul utsav el 6 de Feb. de 2013
if you want single value of intensity you can take mean(total image(:)) otherwise every element of image represents intensity

Iniciar sesión para comentar.

Respuesta aceptada

Image Analyst
Image Analyst el 6 de Feb. de 2013
There is nothing to do. The image is already the intensity.
  7 comentarios
Image Analyst
Image Analyst el 7 de Feb. de 2013
That paper says you have to take the whole histogram of a 10 by 10 chunk of your image, which I guess slides along the image. Then, for that histogram of the 10x10 block, it wants you to find the tallest bin - the max of the histogram. Then it asks you to sum the histogram bins from that bin minus 10 to that bin + 10 gray levels, but excluding the tallest bin itself. This was not well explained by your original wording. Even the papers wording is not optimal. For example using "area" to describe a sum of bins. Yes, I guess it is an area but those pixels represented by those bins may be scattered all over the image and might not even touch each other so it's not like the area of some contiguous blob in the image, which is what I thought from your description.
So, scan the image, say with blockproc(). Then get the histogram in a 10x10 block with imhist() or hist(). Then use max() to find the tallest bin location. Then use sum() to sum between that bin-10 and that bin+10 and subtract the value of the tallest bin. I don't really know what this means, but that's what they ask for. Give it a shot. I told you step by step the functions to use. Search for a blockproc demo that I've posted in Answers if you need help with blockproc.
Elysi Cochin
Elysi Cochin el 9 de Feb. de 2013
thank u sir..

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Image Processing and Computer Vision 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