How to logical AND gray scale image with a constant?
1 次查看(过去 30 天)
显示 更早的评论
ANDing an 8-bit gray level image with a constant value of 240 (11110000 in binary)?
0 个评论
采纳的回答
Image Analyst
2015-8-4
Use bitand():
n1 = uint8(170); % Some number
n2 = uint8(240);
% Show what they are
dec2bin(n1)
dec2bin(n2)
% And them
out = bitand(n1, n2)
% Show result
dec2bin(out)
ans =
10101010
ans =
11110000
out =
160
ans =
10100000
It works for images as well as individual numbers.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Processing Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!