资源简介
在网上找到的可以正确使用的matlab指纹识别的程序
代码片段和文件信息
% This m-file demoes the usage of SIFT functions. It generates SIFT keypionts and descriptors for one input image.
% Author: Yantao Zheng. Nov 2006. For Project of CS5240
% Add subfolder path.
main;
clc;
clear;
img1_dir = ‘demo-data\‘;
img1_file = ‘beaver11.bmp‘;
I1=imreadbw([img1_dir img1_file]) ;
I1_rgb = imread([img1_dir img1_file]) ;
I1=imresize(I1 [240 320]);
I1_rgb =imresize(I1_rgb [240 320]);
I1=I1-min(I1(:)) ; %图像插值缩放可能产生值超出0-1的范围的像素
I1=I1/max(I1(:)) ; %这两步重新归一化图像缩放后的数据
%fprintf(‘CS5240 -- SIFT: Match image: Computing frames and descriptors.\n‘) ;
[frames1descr1gss1dogss1 ] = do_sift( I1 ‘Verbosity‘ 1 ‘NumOctaves‘ 4 ‘Threshold‘ 0.1/3/2 ) ; %0.04/3/2
figure(1) ; clf ; plotss(dogss1) ; colormap gray ;
drawnow ;
figure(2) ; clf ;
imshow(I1_rgb) ; axis image ;
hold on ;
h=plotsiftframe( frames1 ) ; set(h‘LineWidth‘1‘Color‘‘g‘) ;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 402 2008-12-04 15:25 FingerPrint\A1.m
文件 866 2009-05-27 17:20 FingerPrint\DistEuclidian.m
文件 120054 2007-07-24 09:47 FingerPrint\Empreinte.bmp
----------- --------- ---------- ----- ----
121322 3
相关资源
- MATLAB指纹识别系统.zip
- MATLAB指纹识别GUI,比对两幅指纹,完
- 基于MATLAB的指纹识别系统设计
- 指纹识别数字图像处理+模式识别+机器
- 基于MATLAB的指纹识别系统并且带有g
- Matlab指纹识别 程序源码
- 基于MATLAB的指纹识别系统
- 基于matlab指纹识别
- matlab写的指纹识别代码包括图像修复
- 指纹识别程序Gabor滤波+详细注释+代码
- 基于matlab的指纹识别算法.pdf
- MATLAB指纹识别代码可直接用
- 完整的指纹识别matlab程序
- 指纹识别算法MATLAB版本
- 指纹识别matlab程序
- matlab指纹识别带GUI
- 基于Gabor滤波指纹识别算法matlab完整程
- 基于matlab的指纹识别系统(源码)
- 指纹识别的matlab代码
- 基于matlab的指纹识别技术
- 基于数字图像的指纹识别matlab代码
- 指纹图像预处理及特征点提取MATLAB
- matlab指纹识别指纹匹配
- 指纹识别代码
- 基于matlab的指纹识别
- 指纹识别matlab实现
- 指纹代码识别
- 指纹识别技术的MATLAB
- Matlab的指纹识别程序
- 基于MATLAB的指纹识别系统,包含原代
评论
共有 条评论