No pop-up when using imshow

10 Ansichten (letzte 30 Tage)
William Rowe
William Rowe am 13 Jun. 2020
Bearbeitet: Image Analyst am 13 Jun. 2020
Hi sorry if this question has been asked before. I'm trying to view my images using the imshow command. I've tried a variety of input arguments (ex. adding additional parameters). I've also tried loading directly from a file, loading into a variable, and building my own image using the matrices in MatLab. Whenever I run imshow(image_name) nothing happens. No pop-up window, no error, nothing.
I'm using MatLab Version 9.7 and Image Processing Toolbox Version 11.0. I'm also on Windows.
Thanks in advance!
  4 Kommentare
Image Analyst
Image Analyst am 13 Jun. 2020
Does this work?
clear all
close all
grayImage = imread('moon.tif');
imshow(grayImage);
William Rowe
William Rowe am 13 Jun. 2020
Yes, that fixed it! @Image Analyst
Any idea what I was doing wrong? I don't think I shadowed the function, but not sure.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Image Analyst
Image Analyst am 13 Jun. 2020
Bearbeitet: Image Analyst am 13 Jun. 2020
William:
You probably had defined image or imshow and forgotten about it. Perhaps a variable, perhaps an m-file name, perhaps a function - who knows. Calling
clear all
fixed it by "undefining" the definition you made. Glad I could help.
(And to all those other people who always yell at me
that there is never any reason to call clear all,
here's proof that it's sometimes useful.)

Weitere Antworten (0)

Kategorien

Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange

Produkte


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by