gray image app design

조회 수: 13 (최근 30일)
Shu-An Hsieh
Shu-An Hsieh 2021년 9월 21일
댓글: Image Analyst 2021년 9월 22일
I am trying to convert and display the gray image from the left green image into the right one. However, the gray image will pop up separately instead of inside the app. Hope someone can help soon. Thank you!
  댓글 수: 1
Rik
Rik 2021년 9월 21일
You should teach yourself the habit of specifying the parent every time you create a graphics object. In this case you create an axes without specifying the parent, so that will probably create a new axes object in a normal figure, instead of creating one in your uifigure.

댓글을 달려면 로그인하십시오.

답변 (1개)

Image Analyst
Image Analyst 2021년 9월 22일
Try getting rid of the ax=axes line. That probably makes a new axes, which you don't need or want since you created them all already in App Designer.
  댓글 수: 2
Shu-An Hsieh
Shu-An Hsieh 2021년 9월 22일
편집: Image Analyst 2021년 9월 22일
I got this error after I removed it.
Image Analyst
Image Analyst 2021년 9월 22일
rgb2gray takes an image, not a filename. Try
rgbImage = imread(fileName);
% Get the dimensions of the image.
% numberOfColorChannels should be = 1 for a gray scale image, and 3 for an RGB color image.
[rows, columns, numberOfColorChannels] = size(rgbImage)
if numberOfColorChannels > 1
% Convert from RGB to gray scale.
grayImage = rgb2gray(rgbImage);
else
% It's already a gray scale image.
grayImage = rgbImage;
end
imshow(rgbImage, 'Parent', app.UIAxes3);
imshow(grayImage, 'Parent', app.UIAxes2);

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by