资源简介

关于matlab的图像检索,供大家参考。含有gui界面,有图片库

资源截图

代码片段和文件信息

function varargout = cbires(varargin)
% CBIRES MATLAB code for cbires.fig
%      CBIRES by itself creates a new CBIRES or raises the existing
%      singleton*.
%
%      H = CBIRES returns the handle to a new CBIRES or the handle to
%      the existing singleton*.
%
%      CBIRES(‘CALLBACK‘hobjecteventDatahandles...) calls the local
%      function named CALLBACK in CBIRES.M with the given input arguments.
%
%      CBIRES(‘Property‘‘Value‘...) creates a new CBIRES or raises the
%      existing singleton*.  Starting from the left property value pairs are
%      applied to the GUI before cbires_OpeningFcn gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to cbires_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 cbires

% Last Modified by GUIDE v2.5 23-May-2013 22:01:15

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘       mfilename ...
    ‘gui_Singleton‘  gui_Singleton ...
    ‘gui_OpeningFcn‘ @cbires_OpeningFcn ...
    ‘gui_OutputFcn‘  @cbires_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 cbires is made visible.
function cbires_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 cbires (see VARARGIN)

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

% Update handles structure
guidata(hobject handles);

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


% --- Outputs from this function are returned to the command line.
function varargout = cbires_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 button press in btn_BrowseImage.
function btn_BrowseImage_Callback(hobject eventdata handles)
% hobject    handle to btn_BrowseImage (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

[query_fname query_

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件       26936  2013-05-12 22:48  ImageRetrieval\images\146.jpg
     文件       11910  2013-05-12 22:48  ImageRetrieval\images\498.jpg
     文件       27334  2013-05-12 22:48  ImageRetrieval\images\354.jpg
     文件       40763  2013-05-12 22:48  ImageRetrieval\images\54.jpg
     文件       23025  2013-05-12 22:48  ImageRetrieval\images\304.jpg
     文件       25540  2013-05-12 22:48  ImageRetrieval\images\112.jpg
     文件       33280  2013-05-12 22:48  ImageRetrieval\images\33.jpg
     文件       26552  2013-05-12 22:48  ImageRetrieval\images\102.jpg
     文件       26344  2013-05-12 22:48  ImageRetrieval\images\332.jpg
     文件       28622  2013-05-12 22:48  ImageRetrieval\images\361.jpg
     文件       24443  2013-05-12 22:48  ImageRetrieval\images\201.jpg
     文件       45109  2013-05-12 22:48  ImageRetrieval\images\140.jpg
     文件       25040  2013-05-12 22:48  ImageRetrieval\images\187.jpg
     文件       29805  2013-05-12 22:48  ImageRetrieval\images\190.jpg
     文件       43086  2013-05-12 22:48  ImageRetrieval\images\56.jpg
     文件       31439  2013-05-12 22:48  ImageRetrieval\images\122.jpg
     文件       30480  2013-05-12 22:48  ImageRetrieval\images\370.jpg
     文件       15306  2013-05-12 22:48  ImageRetrieval\images\411.jpg
     文件       40115  2013-05-12 22:48  ImageRetrieval\images\53.jpg
     文件       29198  2013-05-12 22:48  ImageRetrieval\images\384.jpg
     文件       12709  2013-05-12 22:48  ImageRetrieval\images\413.jpg
     文件       12882  2013-05-12 22:48  ImageRetrieval\images\427.jpg
     文件       28950  2013-05-12 22:48  ImageRetrieval\images\324.jpg
     文件       14468  2013-05-12 22:48  ImageRetrieval\images\406.jpg
     文件       24543  2013-05-12 22:48  ImageRetrieval\images\301.jpg
     文件       35612  2013-05-12 22:48  ImageRetrieval\images\0.jpg
     文件       31320  2013-05-12 22:48  ImageRetrieval\images\315.jpg
     文件       38617  2013-05-12 22:48  ImageRetrieval\images\212.jpg
     文件       39594  2013-05-12 22:48  ImageRetrieval\images\175.jpg
     文件       27239  2013-05-12 22:48  ImageRetrieval\images\303.jpg
     文件       27756  2013-05-12 22:48  ImageRetrieval\images\141.jpg
............此处省略486个文件信息

评论

共有 条评论