How to logical AND gray scale image with a constant?
조회 수: 7 (최근 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 Segmentation and Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!