在matlab中处理图像时我有一个问题,我有一个白色图像,当我尝试打印图像的灰度并将其增加1时,它给了我255,它从来没有给我256。这是代码. 并且计数为 0。
function [ count ] = white( I )
[row,col]=size(I);
count=0;
for x=1:row
for y=1:col
g=I(x,y); %the value of the gray level on each pixel
if((g+1) == 256)
count=count+1;
256
end
end
end