DO I need Image processing tool box to upload image into GUI
조회 수: 5 (최근 30일)
이전 댓글 표시
I dont have "imshow" command in my matlab 2012b,,,,is it because i don haver image processing toolbox
댓글 수: 1
답변 (2개)
Jurgen
2013년 1월 22일
편집: Jurgen
2013년 1월 22일
I think this should work?
I = imread('file_on_path.jpg')
imagesc(I);
댓글 수: 3
Walter Roberson
2013년 1월 23일
What do you mean by "squeezing" ? Are you talking about the colors, or about the image size, or about the axis proportions ?
Image Analyst
2013년 1월 23일
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.
참고 항목
카테고리
Help Center 및 File Exchange에서 Blue에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!