필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

some trouble about background in gui

조회 수: 1 (최근 30일)
Lidank Abiel
Lidank Abiel 2013년 6월 6일
마감: MATLAB Answer Bot 2021년 8월 20일
I have problem to make background in gui. I'm using this code. It work to display my image as background, but when i browse another image, my background change become the image that i browse.
here my code:
function tes2_OpeningFcn(hObject, eventdata, handles, varargin)
handles.output = hObject;
guidata(hObject, handles);
ha = axes('units','normalized','position',[0 0 1 1]);
uistack(ha,'bottom');
[back map] = imread('Marilyn-Monroe-22388.jpg');
image(back)
colormap (map)
set(ha,'handlevisibility','off','visible','off')
function Open_Callback(hObject, eventdata, handles)
global citra
try
[filename, foldername] = uigetfile('*.jpg');
if filename ~= 0
FileName = fullfile(foldername, filename);
end
citra = imread(FileName);
imshow(citra, []);
end
handles.citra=citra;
guidata(hObject,handles);
thanks before
  댓글 수: 3
Walter Roberson
Walter Roberson 2013년 6월 6일
You have not indicated the difference between how the program behaves and how you want it to behave. You mentioned how it does behave, but not what you want it to do differently.
Lidank Abiel
Lidank Abiel 2013년 6월 18일
I'm sorry sir

답변 (0개)

이 질문은 마감되었습니다.

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by