资源简介
一个详尽的虹膜识别matlab源代码,采用霍夫变换的方法进行图像分割,利用海明距离进行判别,内附有虹膜库一个(6个库图像),三张虹膜测试图像
代码片段和文件信息
% ADDCIRCLE
%
% A circle generator for adding (drawing) weights into a Hough accumulator
% array.(添加一个圆到hough累加阵列中)
%
% Usage: h = addcircle(h c radius weight)
%
% Arguments:
% h - 2D accumulator array.
% c - [xy] coords of centre of circle.
% radius - radius of the circle
% weight - optional weight of values to be added to the
% accumulator array (defaults to 1)
%
% Returns: h - Updated accumulator array.
% Peter Kovesi
% Department of Computer Science & Software Engineering
% The University of Western Australia
% April 2002
function h = addcircle(h c radius weight)
[hr hc] = size(h);
if nargin == 3
weight = 1;
end
% c and radius must be integers
if any(c-fix(c))
error(‘Circle centre must be in integer coordinates‘);
end
if radius-fix(radius)
error(‘Radius must be an integer‘);
end
x = 0:fix(radius/sqrt(2));
costheta = sqrt(1 - (x.^2 / radius^2));
y = round(radius*costheta);
% Now fill in the 8-way symmetric points on a circle given coords
% [px py] of a point on the circle.
px = c(2) + [x y y x -x -y -y -x];
py = c(1) + [y x -x -y -y -x x y];
% Cull points that are outside limits
validx = px>=1 & px<=hr;
validy = py>=1 & py<=hc;
valid = find(validx & validy);
px = px(valid);
py = py(valid);
ind = px+(py-1)*hr;
h(ind) = h(ind) + weight;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 240812 2008-12-19 10:04 0025_002.bmp-houghpara.mat
文件 250228 2008-12-19 19:53 0025_006.bmp-houghpara.mat
文件 240603 2008-12-19 20:55 0033_006.bmp-houghpara.mat
文件 7107274 2008-12-16 17:11 gabor.mat
文件 340667 2008-12-16 22:06 testP.jpg-houghpara.mat
文件 1503 2008-12-09 20:13 addcircle.m
文件 864 2008-12-09 20:00 adjgamma.m
文件 2180 2008-12-09 21:45 canny.m
文件 1691 2008-12-09 19:59 circlecoords.m
文件 3885 2008-12-19 19:42 createiristemplate.m
文件 2490 2008-12-17 10:42 encode.m
文件 755 2008-12-19 19:52 final1.m
文件 1709 2008-12-20 09:57 final2.m
文件 552 2008-10-22 16:31 final.m
文件 2499 2008-12-19 09:59 findcircle.m
文件 1420 2008-12-19 15:40 findline.m
文件 2618 2008-12-17 15:56 gaborconvolve.m
文件 1780 2008-12-09 19:45 gethammingdistance.m
文件 979 2008-12-09 19:40 houghcircle.m
文件 3340 2008-12-09 19:39 hysthresh.m
文件 847 2008-12-09 19:27 linecoords.m
文件 3699 2008-12-09 16:58 nonmaxsup.m
文件 5407 2008-12-20 11:31 normaliseiris.m
文件 3684 2008-12-19 10:03 segmentiris.m
文件 1622 2008-12-09 16:56 shiftbits.m
文件 2350 2008-12-19 16:57 Unti
文件 2817 2008-12-19 16:00 writeoriginal.m
文件 3809 2008-12-12 21:06 hough.txt
文件 1432 2003-11-30 13:44 README.txt
文件 1202 2009-02-25 10:09 说明.txt
............此处省略16个文件信息
相关资源
- 基于matlab图像处理系统含GUI
- MATLAB程序——癫痫病人的脑电信号提
- KNN算法对MNIST数据集分类
- 系统辨识与自适应控制MATLAB仿真1904
- PIV matlab程序
- MATLAB在时间序列分析中的应用_张善文
- matlab利用不变矩提取图片的形状特征
- 滑模变结构控制MATLAB仿真(第1版)(
- UWB_Matlab
- 滑模变结构控制MATLAB仿真刘金锟
- 基于Matlab的指纹图像特征提取
- MATLAB通信技术例程
- 近邻传播聚类算法及matlab API
-
智能汽车 matlabsimuli
nk 模拟仿真技术 - 人脸识别及匹配的matlab实现
- matlab各种数据分析处理模型算法代码
-
BSM1建模指导及Simuli
nk程序 - 定量反馈控制QFTmatlab 工具箱
- matlab神经网络30个案例(文档+源代码
- mupad 教程
- 车牌识别与数据库管理系统
- RTW自动代码生成指导书
- [Matlab作品]matlab实现视频中动态目标跟
- matlab通信系统工具箱
- 各种最小二乘法汇总算例及MATLAB程序
- 一维热传导方程数值解法及matlab实现
-
详解MATLAB/Simuli
nk通信系统建模与仿 - DTI matlab 实现代码
-
50种电力电子基础拓扑Simuli
nk仿真 - LTE系统仿真平台_matlab源码
评论
共有 条评论