DO I need Image processing tool box to upload image into GUI
Ältere Kommentare anzeigen
I dont have "imshow" command in my matlab 2012b,,,,is it because i don haver image processing toolbox
1 Kommentar
Walter Roberson
am 22 Jan. 2013
Yes, imshow() is part of the Image Processing Toolbox.
Antworten (2)
I think this should work?
I = imread('file_on_path.jpg')
imagesc(I);
3 Kommentare
Arun Badigannavar
am 23 Jan. 2013
Walter Roberson
am 23 Jan. 2013
What do you mean by "squeezing" ? Are you talking about the colors, or about the image size, or about the axis proportions ?
Arun Badigannavar
am 23 Jan. 2013
Image Analyst
am 23 Jan. 2013
0 Stimmen
You can use image() without the Image Processing Toolbox. You can also use imagesc() but it applies some weird colormap by default that you'll most likely need to correct with colormap() function to a more appropriate colormap, like gray. image() applies a grayscale color map by default. With either one you can still call colormap to apply whatever colormap you want.
1 Kommentar
Arun Badigannavar
am 23 Jan. 2013
Kategorien
Mehr zu Red finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!