DO I need Image processing tool box to upload image into GUI
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I dont have "imshow" command in my matlab 2012b,,,,is it because i don haver image processing toolbox
1 comentario
Respuestas (2)
Jurgen
el 22 de En. de 2013
Editada: Jurgen
el 22 de En. de 2013
I think this should work?
I = imread('file_on_path.jpg')
imagesc(I);
3 comentarios
Walter Roberson
el 23 de En. de 2013
What do you mean by "squeezing" ? Are you talking about the colors, or about the image size, or about the axis proportions ?
Image Analyst
el 23 de En. de 2013
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.
Ver también
Categorías
Más información sobre Blue en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!