资源简介
使用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
相关资源
- Matlab指纹识别教程-整套指纹识别的学
- 基于matlab的指纹识别系统271063
- 指纹识别系统matlab源代码
- 指纹识别系统+指纹库
- 指纹识别算法matlab程序
- MATLAB指纹识别系统.zip
- MATLAB指纹识别GUI,比对两幅指纹,完
- 基于MATLAB的指纹识别系统设计
- 指纹识别数字图像处理+模式识别+机器
- 基于MATLAB的指纹识别系统并且带有g
- Matlab指纹识别 程序源码
- 基于MATLAB的指纹识别系统
- 基于matlab指纹识别
- matlab写的指纹识别代码包括图像修复
- 指纹识别程序Gabor滤波+详细注释+代码
- 基于matlab的指纹识别算法.pdf
- MATLAB指纹识别代码可直接用
- 完整的指纹识别matlab程序
- 指纹识别算法MATLAB版本
- 指纹识别matlab程序
- 基于Gabor滤波指纹识别算法matlab完整程
- 基于matlab的指纹识别系统(源码)
- 指纹识别的matlab代码
- 基于matlab的指纹识别技术
- 基于数字图像的指纹识别matlab代码
- 指纹图像预处理及特征点提取MATLAB
- matlab指纹识别指纹匹配
- 指纹识别代码
- 基于matlab的指纹识别
- 指纹识别matlab实现
评论
共有 条评论