필터 지우기
필터 지우기

How to extract pixel values in 8-bit binary format from an image?

조회 수: 3 (최근 30일)
Bala
Bala 2013년 3월 27일
댓글: Image Analyst 2020년 4월 4일
I want the image with pixel values in 8 bit binary value.

답변 (2개)

Image Analyst
Image Analyst 2013년 3월 27일
If you want 8 bit, just cast it to 8 bit:
image8bit = uint8(originalImage);
If you want a string of binary digits, use dec2bin()
binaryString = dec2bin(170)
Result:
binaryString =
10101010

Harshit
Harshit 2013년 3월 27일
Once you extract the pixel from image quantize it to (0,256) fixed point representation. Let the pixel be p(i,j) the output should be [p(i,j)/max_image{p(i,j)*256].
  댓글 수: 3
Divya Khanna
Divya Khanna 2020년 4월 4일
Why do we divide it in the end?
Image Analyst
Image Analyst 2020년 4월 4일
Just ignore this answer. It's not correct.

댓글을 달려면 로그인하십시오.

Community Treasure Hunt

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

Start Hunting!

Translated by