资源简介

虹膜识别技术是基于眼睛中的虹膜进行身份识别,应用于安防设备(如门禁等),以及有高度保密需求的场所。 人的眼睛结构由巩膜、虹膜、瞳孔晶状体、视网膜等部分组成。虹膜是位于黑色瞳孔和白色巩膜之间的圆环状部分,其包含有很多相互交错的斑点、细丝、冠状、条纹、隐窝等的细节特征。而且虹膜在胎儿发育阶段形成后,在整个生命历程中将是保持不变的。这些特征决定了虹膜特征的唯一性,同时也决定了身份识别的唯一性。因此,可以将眼睛的虹膜特征作为每个人的身份识别对象。

资源截图

代码片段和文件信息

% 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  iris11\0025_002.bmp-houghpara.mat

     文件     250228  2008-12-19 19:53  iris11\0025_006.bmp-houghpara.mat

     文件    7107274  2008-12-16 17:11  iris11\gabor.mat

     文件     340667  2008-12-16 22:06  iris11\testP.jpg-houghpara.mat

     文件       1503  2008-12-09 20:13  iris11\addcircle.m

     文件        864  2008-12-09 20:00  iris11\adjgamma.m

     文件       2180  2008-12-09 21:45  iris11\canny.m

     文件       1670  2016-04-26 14:57  iris11\circlecoords.m

     文件       3896  2016-04-25 17:29  iris11\createiristemplate.m

     文件       2490  2008-12-17 10:42  iris11\encode.m

     文件        968  2016-04-26 16:02  iris11\final1.m

     文件       1709  2008-12-20 09:57  iris11\final2.m

     文件        552  2008-10-22 16:31  iris11\final.m

     文件       2842  2016-05-26 09:54  iris11\findcircle.m

     文件       1420  2008-12-19 15:40  iris11\findline.m

     文件       2618  2008-12-17 15:56  iris11\gaborconvolve.m

     文件       1780  2008-12-09 19:45  iris11\gethammingdistance.m

     文件        979  2008-12-09 19:40  iris11\houghcircle.m

     文件       3340  2008-12-09 19:39  iris11\hysthresh.m

     文件        847  2008-12-09 19:27  iris11\linecoords.m

     文件       3699  2008-12-09 16:58  iris11\nonmaxsup.m

     文件       5407  2008-12-20 11:31  iris11\normaliseiris.m

     文件       3684  2008-12-19 10:03  iris11\segmentiris.m

     文件       1622  2008-12-09 16:56  iris11\shiftbits.m

     文件       2350  2008-12-19 16:57  iris11\Untitled.m

     文件       2817  2008-12-19 16:00  iris11\writeoriginal.m

     文件       3809  2008-12-12 21:06  iris11\hough.txt

     文件       1432  2003-11-30 13:44  iris11\README.txt

     文件       1202  2009-02-25 10:09  iris11\说明.txt

     文件     308278  2004-11-08 22:28  iris11\0023_006.bmp

............此处省略31个文件信息

评论

共有 条评论