• 大小: 682KB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2021-06-06
  • 语言: Matlab
  • 标签: 指纹识别  

资源简介

使用matlab GUI做的指纹识别,包含指纹数据库。GUI中能够进行读取、二值化、灰度转换、直方图统计、特征提取等

资源截图

代码片段和文件信息

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

% Last Modified by GUIDE v2.5 17-Jun-2015 18:07:27

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘       mfilename ...
                   ‘gui_Singleton‘  gui_Singleton ...
                   ‘gui_OpeningFcn‘ @GUI_OpeningFcn ...
                   ‘gui_OutputFcn‘  @GUI_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 GUI is made visible.
function GUI_OpeningFcn(hobject eventdata handles varargin)
% This function has no output args see OutputFcn.
% hobject    handle to figure
% eventdata  reserved - to be defined han in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
% varargin   command line arguments to GUI (see VARARGIN)

% Choose default command line output for GUI
handles.output = hobject;
a=ones(256256);
axes(handles.axes1);
imshow(a);
axes(handles.axes2);
imshow(a);
axes(handles.axes3);
imshow(a);
axes(handles.axes4);
imshow(a);
% Update handles structure
guidata(hobject handles);

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


% --- Outputs from this function are returned to the command line.
function varargout = GUI_OutputFcn(hobject eventdata handles) 
% varargout  cell array for han 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 clear.
function clear_Callback(hobject eventdata handles)
% hobject    handle to clear (see GCBO)
% eve

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     120054  2007-07-24 09:47  指纹库\Empreinte.bmp

     文件     225774  2008-03-04 12:57  指纹库\im.bmp

     文件     188802  2008-03-04 13:00  指纹库\im1.bmp

     文件     307254  2007-11-30 13:15  指纹库\Image.bmp

     文件     786488  2008-03-04 12:17  指纹库\tt.bmp

     文件     344342  2008-03-04 13:13  指纹库\x1.bmp

     文件     411774  2008-03-04 13:55  指纹库\xx.bmp

     文件     156726  2008-03-04 13:51  指纹库\z.bmp

     文件      63525  2017-05-10 08:45  GUI.fig

     文件       8786  2017-05-10 08:46  GUI.m

     目录          0  2017-05-10 08:52  指纹库

----------- ---------  ---------- -----  ----

              2613525                    11


评论

共有 条评论