Info
この質問は閉じられています。 編集または回答するには再度開いてください。
value of the pixel
1 回表示 (過去 30 日間)
古いコメントを表示
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
0 件のコメント
回答 (2 件)
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
0 件のコメント
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
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!