资源简介
包含两个Matlab的GUI程序,分别用来判定水果的类型以及水果的成熟度判定
代码片段和文件信息
function varargout = GUIzyp(varargin)
% GUIZYP MATLAB code for GUIzyp.fig
% GUIZYP by itself creates a new GUIZYP or raises the existing
% singleton*.
%
% H = GUIZYP returns the handle to a new GUIZYP or the handle to
% the existing singleton*.
%
% GUIZYP(‘CALLBACK‘hobjecteventDatahandles...) calls the local
% function named CALLBACK in GUIZYP.M with the given input arguments.
%
% GUIZYP(‘Property‘‘Value‘...) creates a new GUIZYP or raises the
% existing singleton*. Starting from the left property value pairs are
% applied to the GUI before GUIzyp_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to GUIzyp_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 GUIzyp
% Last Modified by GUIDE v2.5 10-Jun-2017 22:22:31
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘ mfilename ...
‘gui_Singleton‘ gui_Singleton ...
‘gui_OpeningFcn‘ @GUIzyp_OpeningFcn ...
‘gui_OutputFcn‘ @GUIzyp_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 GUIzyp is made visible.
function GUIzyp_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 GUIzyp (see VARARGIN)
% Choose default command line output for GUIzyp
handles.output = hobject;
% Update handles structure
guidata(hobject handles);
% UIWAIT makes GUIzyp wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = GUIzyp_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;
% --- Executes on selection change in popupmenu1.
function popupmenu1_Callback(hobject eventdata handles)
% hobject handle to popupmenu1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 34744 2017-05-27 15:56 水果识别以及成熟度判断\11.jpg
文件 28260 2017-05-27 15:56 水果识别以及成熟度判断\22.jpg
文件 34570 2017-05-27 15:55 水果识别以及成熟度判断\33.jpg
文件 5034 2017-06-04 12:17 水果识别以及成熟度判断\GUI1.fig
文件 7902 2017-06-10 22:31 水果识别以及成熟度判断\GUIzyp.fig
文件 13902 2017-06-10 22:31 水果识别以及成熟度判断\GUIzyp.m
文件 66048 2017-06-10 20:43 水果识别以及成熟度判断\RGB和HSV基于 三种水果成熟度等级判断程序.doc
文件 7182 2017-06-10 20:06 水果识别以及成熟度判断\unti
目录 0 2018-05-13 23:04 水果识别以及成熟度判断
----------- --------- ---------- ----- ----
197642 9
- 上一篇:基于MATLAB的导线网平差程序
- 下一篇:用matlab研究光栅衍射
评论
共有 条评论