Info

此问题已关闭。 请重新打开它进行编辑或回答。

value of the pixel

2 次查看(过去 30 天)
javeed miyandad
javeed miyandad 2011-4-26
关闭: MATLAB Answer Bot 2021-8-20
sir i have a edged image(img) ,i need to check a specific pixel whether it is white or black. how to check?
that is in an image of size 1024X768, i need to check(100X343)Th pixel, how to do please help in coding

回答(2 个)

Matt Fig
Matt Fig 2011-4-26
That would depend somewhat on the datatype, and how exact you want to be in calling something black. Do you want a tolerance? What kind of image is it? I.e., if myimage is the name of your image, what does this return:
whos myimage

Walter Roberson
Walter Roberson 2011-4-26
if any(img(100,343,:) ~= 0)
%it is not pure black. Might be very very dark gray, though.
else
%it is pure black
end
For a 2D binary image, you can reduce this test to
if img(100,343)
%it is white
else
%it is black
end

此问题已关闭。

Community Treasure Hunt

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

Start Hunting!

Translated by