how to find a intensity of the color image?
5 ビュー (過去 30 日間)
古いコメントを表示
i need to find the mean intensity value of the colour image. i dont know how to do it? pls help me
2 件のコメント
Image Analyst
2015 年 6 月 18 日
編集済み: Image Analyst
2015 年 6 月 18 日
What is your definition of intensity (there are multiple definitions)? The actual units of an image are kind of like energy, or more exactly (candela steradian second) in all SI base units - basically Lux * time * area.
Or better yet, what do you really need, and why do you think you need the mean intensity to achieve that?
回答 (1 件)
Walter Roberson
2015 年 6 月 15 日
intensities = rgb2gray(YourImage);
meanint = mean(intensities(:));
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!