Problem with image function in GUI
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Is there any problem with function image() when creating GUI? when i am using it not in gui i dont have any problem. but in my GUI it just doesnt show anything but the grid, no data. If i use pcolor() instead of image() it works fine.
0 Kommentare
Antworten (1)
Image Analyst
am 10 Dez. 2013
No there is no problem. You probably overwrote it with a variable. Did you do anything like
image = imread('cameraman.tif');
?????
2 Kommentare
Image Analyst
am 10 Dez. 2013
By the way, don't use pcolor for images because it chops off the last row and last column. Try this and see what you get:
pcolor(magic(4)) % Try to display a 4 by 4 image - only shows 3x3.
Siehe auch
Kategorien
Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!