资源简介
完成了指纹的预处理 特征提取 指纹匹配 自带指纹数据库

代码片段和文件信息
function [vectornumber]=extraction(tempnumber)
% minutia extraction
% temp=imread(‘1.bmp‘);
% figure(1)
% imshow(temp);
[mn]=size(temp);
newimage=zeros(mn);% minutia map
% 0-black255-white
% detect the points in the eight neighborhood
% focus on the center where the image is clear
% count the minutiae
minutia=0;
for i=2+10:m-1-10
for j=2+10:n-1-10
count=0;
if temp(ij)==1
for p=1:3
for q=1:3
if temp(i-2+pj-2+q)==1
count=count+1;
end
end
end
if count==2
newimage(ij)=1;% the end point
minutia=minutia+1;
pointvect(minutia:)=[1ij];
elseif count==4
newimage(ij)=1;% the bifurcate point
minutia=minutia+1;
pointvect(minutia:)=[2ij];
end
end
end
end
% figure(2)
% imshow(newimage)
% calculate the weight of the minutiae by the function nearest
y=nearest(pointvect);
% sort the pointvect in decreasing order and extract the first 20 as feature
[junk rindices] = sort(-1*y(:4));
vector=y(rindices(1:number):);
number=minutia;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
文件 90512 2000-08-25 17:30 databa
............此处省略83个文件信息
- 上一篇:DAC0832中文资料PDF版
- 下一篇:排队系统.rar
相关资源
- 编程实现二维DCT变换
- 图像二值化
- 用FFT对信号进行频谱分析
- Tone-Reservation
- QGA 量子遗传算法
- 文学研究助手(字符串的查找模式匹
- 字符串括号匹配(c实现)
- 差分形式的阻滞增长模型
- 遗传算法的M文件
- 基于MO实现CAD数据转换为Shape数据后的
- 基于NFC技术控制的电子钱包电路设计
- 简单二阶互联系统的非线性动力学分
- IBM System Storage DS3300按中小企业信息价
- 增程式电动车动力系统参数匹配及仿
- 基于ECE法规的缓速器制动力与制动力
- LL(1)文法的递归下降分析程序例题
- 手写数字识别-模板匹配法
- Stock_Watson_动态因子分析模型
- 果蝇优化算法优化支持向量回归程序
- 自己做的一个简单GUI扑克纸牌识别-
- multi output SVR
- AR过程的线性建模过程与各种功率谱估
- PCNN TOOLBOX
- siftDemoV4.zip
- plstoolbox.zip
- 基于相关系数的影像匹配
- 中国国家基础地理信息系统GIS数据
- 粒子群微电网优化调度
- 矩阵分析-经典教材-中文版-Roger.A.Ho
- 基于概率神经网络的图匹配算法研究
评论
共有 条评论