フィルターのクリア

how to calculate intensity of an image

1 回表示 (過去 30 日間)
Elysi Cochin
Elysi Cochin 2013 年 2 月 6 日
i wanted to calculate intensity of an image... please could someone help me.....
  1 件のコメント
vipul utsav
vipul utsav 2013 年 2 月 6 日
if you want single value of intensity you can take mean(total image(:)) otherwise every element of image represents intensity

サインインしてコメントする。

採用された回答

Image Analyst
Image Analyst 2013 年 2 月 6 日
There is nothing to do. The image is already the intensity.
  7 件のコメント
Image Analyst
Image Analyst 2013 年 2 月 7 日
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 2013 年 2 月 9 日
thank u sir..

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImage Processing and Computer Vision についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by