资源简介

1. 基于Matlab,支持GUI和数据库 2. 使用著名图像测试集:WANG datasets, 1000 test image 3. 支持多种特征向量: color histogram Color Correlogram Gabor filter Wavelet 4. 支持SVM分类器

资源截图

代码片段和文件信息

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_

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2015-06-05 00:34  ImageRetrieval\
     文件        8196  2015-06-05 16:30  ImageRetrieval\.DS_Store
     目录           0  2015-07-10 15:33  __MACOSX\
     目录           0  2015-07-10 15:33  __MACOSX\ImageRetrieval\
     文件         120  2015-06-05 16:30  __MACOSX\ImageRetrieval\._.DS_Store
     文件        7348  2014-02-12 14:33  ImageRetrieval\cbires.fig
     文件         226  2014-02-12 14:33  __MACOSX\ImageRetrieval\._cbires.fig
     文件       18268  2014-02-12 14:33  ImageRetrieval\cbires.m
     文件         226  2014-02-12 14:33  __MACOSX\ImageRetrieval\._cbires.m
     文件        2985  2014-02-12 14:33  ImageRetrieval\colorAutoCorrelogram.m
     文件         226  2014-02-12 14:33  __MACOSX\ImageRetrieval\._colorAutoCorrelogram.m
     文件         725  2014-02-12 14:33  ImageRetrieval\colorMoments.m
     文件         226  2014-02-12 14:33  __MACOSX\ImageRetrieval\._colorMoments.m
     文件        1206  2014-02-12 14:33  ImageRetrieval\confMatGet.m
     文件         226  2014-02-12 14:33  __MACOSX\ImageRetrieval\._confMatGet.m
     文件        4829  2014-02-12 14:33  ImageRetrieval\confMatPlot.m
     文件         226  2014-02-12 14:33  __MACOSX\ImageRetrieval\._confMatPlot.m
     文件     1232682  2014-02-12 14:33  ImageRetrieval\dataset.mat
     文件         226  2014-02-12 14:33  __MACOSX\ImageRetrieval\._dataset.mat
     文件       19893  2014-02-12 14:33  ImageRetrieval\gaborWavelet.m
     文件         226  2014-02-12 14:33  __MACOSX\ImageRetrieval\._gaborWavelet.m
     文件        3531  2014-02-12 14:33  ImageRetrieval\hsvHistogram.m
     文件         226  2014-02-12 14:33  __MACOSX\ImageRetrieval\._hsvHistogram.m
     目录           0  2015-05-30 14:45  ImageRetrieval\images\
     文件       35612  2014-02-12 14:33  ImageRetrieval\images\0.jpg
     目录           0  2015-07-10 15:33  __MACOSX\ImageRetrieval\images\
     文件         226  2014-02-12 14:33  __MACOSX\ImageRetrieval\images\._0.jpg
     文件       24182  2014-02-12 14:33  ImageRetrieval\images\1.jpg
     文件         226  2014-02-12 14:33  __MACOSX\ImageRetrieval\images\._1.jpg
     文件       32244  2014-02-12 14:33  ImageRetrieval\images\10.jpg
     文件         226  2014-02-12 14:33  __MACOSX\ImageRetrieval\images\._10.jpg
............此处省略1010个文件信息

评论

共有 条评论