资源简介
基于颜色特征的图像检索系统论文及程序
代码片段和文件信息
function varargout = Demo(varargin)
% ------------------------------------------------------------
% DEMO Application M-file for Demo.fig
% DEMO by itself creates a new DEMO or raises the existing
% singleton*.
%
% H = DEMO returns the handle to a new DEMO or the handle to
% the existing singleton*.
%
% DEMO(‘CALLBACK‘hobjecteventDatahandles...) calls the local
% function named CALLBACK in DEMO.M with the given input arguments.
%
% DEMO(‘Property‘‘Value‘...) creates a new DEMO or raises the
% existing singleton*. Starting from the left property value pairs are
% applied to the GUI before Demo_OpeningFunction gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to Demo_OpeningFcn via varargin.
%
% *See GUI Options - GUI allows only one instance to run (singleton).
%
% See also: GUIDE GUIDATA GUIHANDLES
% Edit the above text to modify the response to help Demo
% Last Modified by GUIDE v2.5 03-Apr-2009 15:16:28
% ------------------------------------------------------------
% ------------------------------------------------------------
% 初始化的代码 - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘ mfilename ...
‘gui_Singleton‘ gui_Singleton ...
‘gui_OpeningFcn‘ @Demo_OpeningFcn ...
‘gui_OutputFcn‘ @Demo_OutputFcn ...
‘gui_LayoutFcn‘ [] ...
‘gui_Callback‘ []);
if nargin == 0 % LAUNCH GUI
initial_dir = pwd;
% Open FIG-file
fig = openfig(mfilename‘reuse‘); % Generate a structure of handles to pass to callbacks and store it.
handles = guihandles(fig);
guidata(fig handles);
%disp(‘populate1!!‘);
% Populate the listbox
load_listbox(initial_dirhandles)
% Return figure handle as first output argument
if nargout > 0
varargout{1} = fig;
end
elseif ischar(varargin{1}) % INVOKE NAMED SUBFUNCTION OR CALLBACK
try
[varargout{1:nargout}] = feval(varargin{:}); % FEVAL switchyard
catch
disp(lasterr);
end
end
% 初始化结束 - DO NOT EDIT
% ------------------------------------------------------------
% ------------------------------------------------------------
% Executes just before Demo is made visible.
% ------------------------------------------------------------
function Demo_OpeningFcn(hobject eventdata handles varargin)
% 该函数没有输出参数.
% hobject handle to figure(图形的句柄)
% eventdata reserved - 该参数保留以后的MATLAB版本使用
% handles structure with handles and user data (see GUIDATA)
% varargin 命令行的输入参数(see VARARGIN)
% 选择默认的命令行输出
handles.output = hobject;
% Initialize the options...
handles.option = ‘input‘;
% 更新句柄结构
guidata(hobject handles);
% ------------------------------------------------------------
% ------------------------------------------------------------
% 该
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 66614 2003-03-10 23:20 基于颜色特征的图像检索系统\007.bmp
文件 66614 2003-05-05 23:20 基于颜色特征的图像检索系统\01.bmp
文件 66614 2003-03-11 06:49 基于颜色特征的图像检索系统\011.BMP
文件 66614 2003-05-05 23:20 基于颜色特征的图像检索系统\02.bmp
文件 66614 2003-05-05 23:21 基于颜色特征的图像检索系统\03.bmp
文件 66614 2003-05-05 23:21 基于颜色特征的图像检索系统\04.bmp
文件 66614 2003-05-05 23:21 基于颜色特征的图像检索系统\05.bmp
文件 66614 2003-05-05 23:21 基于颜色特征的图像检索系统\06.bmp
文件 66614 2003-05-05 23:21 基于颜色特征的图像检索系统\07.bmp
文件 66614 2003-05-05 23:21 基于颜色特征的图像检索系统\08.bmp
文件 66614 2003-03-10 23:24 基于颜色特征的图像检索系统\081.BMP
文件 66614 2003-05-05 23:21 基于颜色特征的图像检索系统\09.bmp
文件 66614 2003-03-10 23:25 基于颜色特征的图像检索系统\091.BMP
文件 66614 2003-05-05 23:22 基于颜色特征的图像检索系统\10.bmp
文件 66614 2003-03-10 23:25 基于颜色特征的图像检索系统\101.BMP
文件 66614 2003-05-05 23:22 基于颜色特征的图像检索系统\11.bmp
文件 66614 2003-03-10 23:26 基于颜色特征的图像检索系统\111.BMP
文件 66614 2003-05-05 23:22 基于颜色特征的图像检索系统\12.bmp
文件 66614 2003-03-10 23:27 基于颜色特征的图像检索系统\121.BMP
文件 66614 2003-05-05 23:22 基于颜色特征的图像检索系统\13.bmp
文件 66614 2003-03-10 23:27 基于颜色特征的图像检索系统\131.BMP
文件 66614 2003-05-05 23:22 基于颜色特征的图像检索系统\14.bmp
文件 66614 2003-03-10 23:28 基于颜色特征的图像检索系统\141.BMP
文件 66614 2003-05-05 23:22 基于颜色特征的图像检索系统\15.bmp
文件 66614 2003-03-10 23:28 基于颜色特征的图像检索系统\151.BMP
文件 66614 2003-05-05 23:22 基于颜色特征的图像检索系统\16.bmp
文件 66614 2003-05-05 23:22 基于颜色特征的图像检索系统\17.bmp
文件 66614 2003-03-10 23:29 基于颜色特征的图像检索系统\171.BMP
文件 66614 2003-05-05 23:22 基于颜色特征的图像检索系统\18.bmp
文件 66614 2003-03-10 23:30 基于颜色特征的图像检索系统\181.BMP
............此处省略75个文件信息
- 上一篇:STM32 ADF4351
- 下一篇:Repast Simphony 使用指南
评论
共有 条评论