资源简介

讲解matlab中的GUI界面设计并附有案例,例如如何设计界面菜单和控件,不同GUI之前函数传递,讲解了如何调用自身函数

资源截图

代码片段和文件信息

function varargout = image_menu(varargin)
% IMAGE_MENU M-file for image_menu.fig
%      IMAGE_MENU by itself creates a new IMAGE_MENU or raises the existing
%      singleton*.
%
%      H = IMAGE_MENU returns the handle to a new IMAGE_MENU or the handle to
%      the existing singleton*.
%
%      IMAGE_MENU(‘CALLBACK‘hobjecteventDatahandles...) calls the local
%      function named CALLBACK in IMAGE_MENU.M with the given input arguments.
%
%      IMAGE_MENU(‘Property‘‘Value‘...) creates a new IMAGE_MENU or raises the
%      existing singleton*.  Starting from the left property value pairs are
%      applied to the GUI before image_menu_OpeningFunction gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to image_menu_OpeningFcn via varargin.
%
%      *See GUI Options on GUIDE‘s Tools menu.  Choose “GUI allows only one
%      instance to run (singleton)“.
%
% See also: GUIDE GUIDATA GUIHANDLES

% Edit the above text to modify the response to help image_menu

% Last Modified by GUIDE v2.5 12-Nov-2010 19:42:15

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘       mfilename ...
                   ‘gui_Singleton‘  gui_Singleton ...
                   ‘gui_OpeningFcn‘ @image_menu_OpeningFcn ...
                   ‘gui_OutputFcn‘  @image_menu_OutputFcn ...
                   ‘gui_LayoutFcn‘  []  ...
                   ‘gui_Callback‘   []);
if nargin && ischar(varargin{1})
    gui_State.gui_Callback = str2func(varargin{1});
end

if nargout
    [varargout{1:nargout}] = gui_mainfcn(gui_State varargin{:});
else
    gui_mainfcn(gui_State varargin{:});
end
% End initialization code - DO NOT EDIT


% --- Executes just before image_menu is made visible.
function image_menu_OpeningFcn(hobject eventdata handles varargin)
% This function has no output args see OutputFcn.
% hobject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
% varargin   command line arguments to image_menu (see VARARGIN)
global im;
global im_temp;


% Choose default command line output for image_menu
handles.output = hobject;

% Update handles structure
guidata(hobject handles);

% UIWAIT makes image_menu wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = image_menu_OutputFcn(hobject eventdata handles) 
% varargout  cell array for returning output args (see VARARGOUT);
% hobject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Get default command line output from handles structure
varargout{1} = handles.output;


% ----------------------------------------------

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2012-12-17 23:49  GUI界面设计范例\电信课程设计\
     目录           0  2012-12-17 23:49  GUI界面设计范例\电信课程设计\1.image_menu\
     文件       54580  2010-09-06 11:25  GUI界面设计范例\电信课程设计\1.image_menu\castle.jpg
     文件      601919  2010-09-06 11:25  GUI界面设计范例\电信课程设计\1.image_menu\castle.png
     文件        3782  2010-11-12 19:42  GUI界面设计范例\电信课程设计\1.image_menu\image_menu.fig
     文件        5884  2010-11-12 19:42  GUI界面设计范例\电信课程设计\1.image_menu\image_menu.m
     文件       65722  2006-04-04 00:00  GUI界面设计范例\电信课程设计\1.image_menu\lena.tif
     文件      474648  2010-05-27 19:35  GUI界面设计范例\电信课程设计\1.image_menu\Lenna.png
     目录           0  2012-12-17 23:49  GUI界面设计范例\电信课程设计\2.image_proc\
     文件       54580  2010-11-01 18:29  GUI界面设计范例\电信课程设计\2.image_proc\castle.jpg
     文件      601919  2010-11-01 18:29  GUI界面设计范例\电信课程设计\2.image_proc\castle.png
     文件        7389  2010-11-01 18:49  GUI界面设计范例\电信课程设计\2.image_proc\image_proc.asv
     文件        6620  2010-11-01 18:56  GUI界面设计范例\电信课程设计\2.image_proc\image_proc.fig
     文件        7729  2010-11-01 18:57  GUI界面设计范例\电信课程设计\2.image_proc\image_proc.m
     文件       65722  2010-11-01 18:29  GUI界面设计范例\电信课程设计\2.image_proc\lena.tif
     文件      474648  2010-11-01 18:29  GUI界面设计范例\电信课程设计\2.image_proc\Lenna.png
     文件         131  2010-11-01 18:36  GUI界面设计范例\电信课程设计\2.image_proc\rgb2yuv.m
     文件         806  2010-11-01 18:36  GUI界面设计范例\电信课程设计\2.image_proc\show_rgb.m
     目录           0  2012-12-17 23:49  GUI界面设计范例\电信课程设计\3.two_gui\
     文件       54580  2010-09-06 11:25  GUI界面设计范例\电信课程设计\3.two_gui\castle.jpg
     文件      601919  2010-09-06 11:25  GUI界面设计范例\电信课程设计\3.two_gui\castle.png
     文件        3477  2010-11-08 18:46  GUI界面设计范例\电信课程设计\3.two_gui\image_menu.fig
     文件        5398  2010-11-08 18:48  GUI界面设计范例\电信课程设计\3.two_gui\image_menu.m
     文件        1839  2010-11-08 18:46  GUI界面设计范例\电信课程设计\3.two_gui\image_rotate.fig
     文件        4509  2010-11-08 18:49  GUI界面设计范例\电信课程设计\3.two_gui\image_rotate.m
     文件       65722  2006-04-04 00:00  GUI界面设计范例\电信课程设计\3.two_gui\lena.tif
     文件      474648  2010-05-27 19:35  GUI界面设计范例\电信课程设计\3.two_gui\Lenna.png
     目录           0  2012-12-17 23:49  GUI界面设计范例\电信课程设计\4.function_calling\
     文件       54580  2010-11-15 18:44  GUI界面设计范例\电信课程设计\4.function_calling\castle.jpg
     文件      601919  2010-11-15 18:44  GUI界面设计范例\电信课程设计\4.function_calling\castle.png
     文件         251  2010-11-15 18:42  GUI界面设计范例\电信课程设计\4.function_calling\equ.m
............此处省略40个文件信息

评论

共有 条评论