My white and black strips becomes a a black surface using imread and imshow

조회 수: 2 (최근 30일)
I have a .PNG picture containing black and white strips shown below.
I was trying show this image in MATLAB using imread and imshow:
strips = imread('strip.png')
imshow(strips)
after running these two lines of code, the image becomes a black surface, shown below:
I thought maybe all the black strips were squished together and zooming could solve the problem, but it did not.
How can I show the original image?
  댓글 수: 2
Geoff Hayes
Geoff Hayes 2021년 9월 16일
Fan - what happens if you use image instead? i.e.
image(strips)
If that doesn't work, what are the dimensions of strips?
Dave B
Dave B 2021년 9월 16일
It seems to work with the image you included in your question, maybe attach the original?
im=imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/740714/image.png');
imshow(im)

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

채택된 답변

Image Analyst
Image Analyst 2021년 9월 16일
Try imshow with []:
imshow(strips, [])

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

태그

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by