Hello.
I have a GUIDE gui that worked fine for a while, until I try to put a new image in axes for a logo.
dir_name = ['C:\Users\',login,'\Desktop'];
wiggle_file_name = [dir_name,'\wiggles3.jpg'];
if exist(wiggle_file_name,'file')
imshow(wiggle_file_name);
end
logo_file_name = [dir_name,'\ctrl_v_logo.jpg'];
imshow(logo_file_name,handles.axes3);
Any suggestions? I am not sure why the first image goes to axes2, this is at the beginning of the OpeningFcn
Thanks!
Doug Anderson
0 Comments
Sign in to comment.