2017.06.29总结指纹识别图像增强问题

总结这段时间对指纹识别图像增强的理解,关于一些思路的问题,也不知道自己想的对不对,简单记录下:

1.近段时间一直在学习c++实现指纹图像增强,最初的想法是看懂c++,然后将c++改成c,但是现在感觉这个思路似乎不太正确。其实,c和c++可以混编,都可以编译好;换句话说,在MDK5上,可以用我现在的代码进行移植,先跑跑一些简单的方法,可以用软件仿真打印或者用屏幕输出;

2.或者,用我现在手上这套c语言的程序,直接在stm32上移植,学习下,从sd卡如何读取图片等等;关于这方面的一些博客,我收藏了几个,可以学习下;

3. 最近一段时间学习指纹图像增强算法,包括归一化、提取指纹方向、提取指纹频率、Gabor滤波等几个过程,其中,归一化和我在论文中看到的方法不一样,过程基本看懂了;

提取指纹频率和在论文中看到的方法是一样的,过程基本看懂了;提取指纹频率和Gabor滤波器和我在论文中看到的方法也是一样的,但是其过程我有很多方面不懂,还需要进一步仔细研究;





  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
指纹增强-指纹增强.rar 有一位论坛朋友寻找的关于一篇经典指纹增强文章的源代码: 帖子如下(含文章): https://www.ilovematlab.cn/thread-74316-1-1.html 这个源程序的一个实例:介绍一下怎么应用 clear clc im = imread; if length)>2     im=rgb2gray; end         % Identify ridge-like regions and normalise image     blksze = 16; thresh = 0.1;     [normim, mask] = ridgesegment;     show;     % Determine ridge orientations     [orientim, reliability] = ridgeorient;     plotridgeorient     show 1.jpg 2.jpg 3.jpg                            原图                                                                    Orientations overlaid                                        'Reliability' of orientations                                   % Determine ridge frequency values across the image     blksze = 36;     [freq, medfreq] = ridgefreq;     show                                 Frequency data          % Actually I find the median frequency value used across the whole    % fingerprint gives a more satisfactory result...       freq = medfreq.*mask;         % Now apply filters to enhance the ridge pattern    newim = ridgefilter;    show;                                 Filtered image             % Binarise, ridge/valley threshold is 0    binim = newim > 0;    show;                                 Binary image         % Display binary image for where the mask values are one and where    % the orientation reliability is greater than 0.5    show, 7)                                 Masked binary image                                 Original image 程序包如下: 指纹增强.rar 程序包含: QQ截图未命名.jpg
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值