How to change the Image colour of ones and zeros to white and black

조회 수: 1 (최근 30일)
The mage has 50 x 100 points (vertical x horizontal dimension). Each point can be zero or one, where zero = white colour and one = black colour.
I tried this
B = randi([0 1],50, 100);
imagesc(B)
The output image is represented with yellow and blue but I want it to be black and white.

채택된 답변

Image Analyst
Image Analyst 2021년 6월 18일
You don't need a colormap. Just try this:
B = randi([0 1],50, 100);
imshow(B)
impixelinfo();
  댓글 수: 16
Akakan-Abasi Okon
Akakan-Abasi Okon 2021년 8월 21일
Thank you Image Analyst, please you can help with this one.
What I actually want is how to remove noise from this noisy image to get back my original image.
Though the recovered image might not look exactly the way it was but should have the rectangular blocks(probably with some distortions) in similar position as it was in the original image.
Image Analyst
Image Analyst 2021년 8월 21일
Try imclose() and bwareaopen() or bwareafilt().

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

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by