Getting wrong value of sum
8 次查看(过去 30 天)
显示 更早的评论
I am writing a code in matlab and dealing with images. I am basically finding the sum of value of each pixel, for this I am using code "sum=0; for i=1:584 for j=1:40 img(i,j) sum=sum+img(i,j) end end" here img(i,j) is any gray-scale image. the problem arises here is that the value of "sum" never accedes from 255. Hence I can't get correct value of sum. Someone please help me in finding correct values of sum
0 个评论
采纳的回答
Oleg Komarov
2011-8-13
First of all don't use sum as a variable since it's a MATLAB function, next time you try to call the function it will be obfuscated by your variable.
Second img is a uint8 class which cannot store more than 256 values (zero included):
intmax('uint8')
Do the following
out = sum(double(img(:)))
Note that I am using the function sum to perform the summation and assignin the value to something else but any MATLAB function named variable.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!