No pop-up when using imshow
古いコメントを表示
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 件のコメント
Walter Roberson
2020 年 6 月 13 日
if you use image() or imagesc() instead of imshow() do you get output?
What shows up for
which -all image
which -all imshow
William Rowe
2020 年 6 月 13 日
Image Analyst
2020 年 6 月 13 日
Does this work?
clear all
close all
grayImage = imread('moon.tif');
imshow(grayImage);
William Rowe
2020 年 6 月 13 日
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
