资源简介
虹膜识别+源代码+matlab+霍夫变换+hough变换2
代码片段和文件信息
% 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;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 308278 2004-11-08 22:29 0033_006.bmp
文件 261919 2008-12-19 19:54 0023_006.bmp-houghpara.mat
文件 251373 2008-12-19 10:03 0025_001.bmp-houghpara.mat
文件 250228 2008-12-19 19:53 0025_006.bmp-houghpara.mat
文件 240812 2008-12-19 10:04 0025_002.bmp-houghpara.mat
文件 240603 2008-12-19 20:55 0033_006.bmp-houghpara.mat
文件 41058 2008-12-16 19:45 testP.jpg
文件 5407 2008-12-20 11:31 normaliseiris.m
文件 3885 2008-12-19 19:42 createiristemplate.m
文件 3809 2008-12-12 21:06 hough.txt
文件 3699 2008-12-09 16:58 nonmaxsup.m
文件 3684 2008-12-19 10:03 segmentiris.m
文件 3340 2008-12-09 19:39 hysthresh.m
文件 2817 2008-12-19 16:00 writeoriginal.m
文件 2618 2008-12-17 15:56 gaborconvolve.m
文件 2499 2008-12-19 09:59 findcircle.m
文件 2490 2008-12-17 10:42 encode.m
文件 2350 2008-12-19 16:57 Unti
文件 2180 2008-12-09 21:45 canny.m
文件 1780 2008-12-09 19:45 gethammingdistance.m
文件 1709 2008-12-20 09:57 final2.m
文件 1691 2008-12-09 19:59 circlecoords.m
文件 1622 2008-12-09 16:56 shiftbits.m
文件 1503 2008-12-09 20:13 addcircle.m
文件 1432 2003-11-30 13:44 README.txt
文件 1420 2008-12-19 15:40 findline.m
文件 1202 2009-02-25 10:09 说明.txt
文件 979 2008-12-09 19:40 houghcircle.m
文件 864 2008-12-09 20:00 adjgamma.m
文件 847 2008-12-09 19:27 linecoords.m
............此处省略7个文件信息
相关资源
- gps基本原理及其matlab仿真199992
- 信号分析与处理——MATLAB语言及应用
- MATLAB编程100例
- 扫描文件的光学字符分割文字分割M
- 交替方向乘子法ADMM算法的matlab代码
- 图像插值方法3种方法,MATLAB代码
- AF、DF协议的MATLAB仿真
- tobii眼动仪视觉追踪程序源码,MATLA
- ADMM工具包
- Matlab实现FCM算法
- matlab 计算李雅普诺夫指数的方法集合
- 多径多普勒效应讲义(含matlab程序)
- 基于Matlab的数字图像处理课程设计
- 房价预测模型算法源代码
- 雷达系统设计MATLAB仿真.pdf196612
- Matlab 揭秘 全本
- MATLAB建模与仿真应用教程(第2版 )
- 精简版绿色Matlab
- DTFT、DFT、FFT原理及编程
- 无线传感器网络定位程序(matlab可以
- 雷达系统设计及matlab仿真 全文书籍
- 基于matlab图像处理系统含GUI
- 虹膜识别matlab程序源代码
- MATLAB程序——癫痫病人的脑电信号提
- KNN算法对MNIST数据集分类
- 系统辨识与自适应控制MATLAB仿真1904
- PIV matlab程序
- MATLAB在时间序列分析中的应用_张善文
- matlab利用不变矩提取图片的形状特征
- 滑模变结构控制MATLAB仿真(第1版)(
评论
共有 条评论