Description: 这是一个用C++语言实现一个指纹识别程序,程序里应用到的技术有:中值滤波、直方图均衡化、脊线方向提取、Gabor滤波、指纹细化、特征提取、特征点过滤、基于局部特征点的特征匹配-This is a C++ Language realization of a fingerprint identification procedures, program applied to the technology are as follows: median filter, histogram equalization, the direction of the ridge line extraction, Gabor filtering, fingerprint thinning, feature extraction, feature point filter , based on local feature points of the feature matching Platform: |
Size: 1078272 |
Author:张晓 |
Hits:
Description: 用C++语言实现一个指纹识别程序,要求满足FVC国际竞赛标准,并在学校建立的指纹库上实测。程序里应用到的技术有:中值滤波、直方图均衡化、脊线方向提取、Gabor滤波、指纹细化、特征提取、特征点过滤、基于局部特征点的特征匹配-With C++ Language realization of a fingerprint identification procedures, require FVC meet international competition standards and the establishment of the fingerprint in the school library measured. Program applied to the technology are as follows: median filter, histogram equalization, the direction of the ridge line extraction, Gabor filtering, fingerprint refinement, feature extraction, feature point filtering, based on local feature points of the feature matching Platform: |
Size: 1719296 |
Author:mysisi |
Hits:
Description: Gabor 滤波器工具箱,包括各种Gabor滤波器的函数,可用于图像滤波处理,特征提取,如人脸,掌纹,指纹识别等。-Gabor filter toolbox, including Gabor filter function, can be used for image filtering processing, feature extraction, such as human faces, palm prints, such as fingerprint recognition. Platform: |
Size: 296960 |
Author:陈浩 |
Hits:
Description: 这是一个用C++语言实现一个指纹识别程序,要求满足FVC国际竞赛标准,并在学校建立的指纹库上实测。程序里应用到的技术有:中值滤波、直方图均衡化、脊线方向提取、Gabor滤波、指纹细化、特征提取、特征点过滤、基于局部特征点的特征匹配-This is a C++ Language realization of a fingerprint identification procedure, the requirements FVC meet international competition standards, and established in the school library on the measured fingerprint. Program applied to the technology are as follows: median filter, histogram equalization, the direction of the ridge line extraction, Gabor filtering, fingerprint thinning, feature extraction, feature point filtering, based on local feature points of the feature matching Platform: |
Size: 2272256 |
Author:job |
Hits:
Description: 这是一个用C++语言实现一个指纹识别程序,要求满足FVC国际竞赛标准,并在学校建立的指纹库上实测。程序里应用到的技术有:中值滤波、直方图均衡化、脊线方向提取、Gabor滤波、指纹细化、特征提取、特征点过滤、基于局部特征点的特征匹配等等……
-This is a C++ language implementation with a fingerprint identification procedure that requires the FVC meet international competition standards, and establish a fingerprint in the school library on the measurement. Program where the technology applied to the following: median filter, histogram equalization, the direction of ridge line extraction, Gabor filtering, fingerprint refinement, feature extraction, feature point filtering, based on local feature points of the feature matching and so on ... ... Platform: |
Size: 2214912 |
Author:武子 |
Hits:
Description: 这是一个完整的指纹识别程序,它包括了直方图均衡,Gabor滤波图像增强,方向图过滤,纹理细化,特征提取及特征匹配。其中,特征匹配包含了3种匹配方法,另外还附有PPT,非常值得研究。-This is a complete fingerprint recognition program, which includes the histogram equalization, Gabor filter image enhancement, pattern filtering, texturing, thinning, feature extraction and feature matching. Among them, feature matching contains three kinds of matching methods, in addition with PPT, is worth studying. Platform: |
Size: 5446656 |
Author:conroy cheung |
Hits:
Description: 指纹识别程序:
包括了直方图均衡,Gabor滤波图像增强,方向图过滤,纹理细化,特征提取及特征匹配。其中,特征匹配包含了3种匹配方法,另外还附有PPT,非常值得研究。-Fingerprint identification procedures: including histogram equalization, Gabor filter, image enhancement, pattern filtering, texture refinement, feature extraction and feature matching. Among them, the feature matching method includes three kinds of match, also with a PPT, is worth studying. Platform: |
Size: 5445632 |
Author:陈亨利 |
Hits:
Description: 这是一个完整的指纹识别程序,它包括了直方图均衡,Gabor滤波图像增强,方向图过滤,纹理细化,特征提取及特征匹配。其中,特征匹配包含了3种匹配方法,另外还附有PPT,非常值得研究。-This is a complete fingerprint recognition program, which includes the histogram equalization, Gabor filter image enhancement, pattern filtering, texturing, thinning, feature extraction and feature matching. Among them, the feature matching includes matching 3, also with a PPT, is worth studying. Platform: |
Size: 5449728 |
Author:木易 |
Hits:
Description: Gabor滤波器经常被用于形状检测和特征提取,比如增强指纹图像。本代码用matlab实现了一个二维Gabor滤波器。
代码使用如下:
function [G,gabout] = gaborfilter1(I,Sx,Sy,f,theta)
from gaborfilter1 with different f(Frequency) and theta(Angle).
for example
f:0,2,4,8,16,32
theta = 0,pi/3,pi/6,pi/2,3pi/4
then for any input image like(eg. stereo.jpg)
you have 6x5 = 30 filtered images.
You can choose your desired angles or frequencies.
You can put nominaly Sx & Sy = 2,4 or some one else.
For instance I tested above example on ( cameraman.tif )(in MATLAB pictures)
I = imread( cameraman.tif )
[G,gabout] = gaborfilter1(I,2,4,16,pi/3)
figure,imshow(uint8(gabout)) -Gabor filters are often used for shape detection and feature extraction, such as the enhanced fingerprint image. Matlab implementation of the code is a two-dimensional Gabor filter. Use the following code: function [G, gabout] = gaborfilter1 (I, Sx, Sy, f, theta) from ' gaborfilter1' with different f (Frequency) and theta (Angle). For example f: 0,2,4, 8,16,32 theta = 0, pi/3, pi/6, pi/2,3 pi/4 then for any input image like (eg. stereo.jpg) you have 6x5 = 30 filtered images. You can choose your desired angles or frequencies. You can put nominaly Sx & Sy = 2,4 or some one else. For instance I tested above example on (' cameraman.tif' ) (in MATLAB pictures) I = imread (' cameraman.tif' ) [G, gabout] = gaborfilter1 (I, 2,4,16, pi/3) figure, imshow (uint8 (gabout)) Platform: |
Size: 1024 |
Author:郑碧波 |
Hits:
Description: demo program a complete fingerprint feature extraction procedures. Including all the algorithms commonly used options.Centralize: binary image, Center Point- Crop: image pruning- Sectorize: Visualization fan- Normalize: normalized input image- Gabor filters: Visualization Gabor Filter- Convolute: Calculation of the input image and Gabor filter convolution- Features: Characteristics of visualization- FingerCode: in the database to join the fingerprint- Check: Fingerprint matching Platform: |
Size: 367616 |
Author:harry |
Hits:
Description: Gabor 滤波器工具箱,包含各种Gabor滤波器的函数,可用于于图像滤波处理,特征提取,如人脸,掌纹,指纹识别等。 已通过测试。
-Gabor Filter Toolbox contains a variety of Gabor filter function, can be used to deal with image filltering, feature extraction, such as face, palmprint, fingerprint recognition. Have passed the tests.
Platform: |
Size: 296960 |
Author: |
Hits:
Description: 完整的VC指纹识别源代码
这是一个完整的指纹识别程序,它包括了直方图均衡,Gabor滤波图像增强,方向图过滤,纹理细化,特征提取及特征匹配。其中,特征匹配包含了3种匹配方法,另外还附有PPT,非常值得研究。-VC fingerprint recognition source code is a complete fingerprint recognition program, which includes a histogram equalization, Gabor filter image enhancement filter pattern, texture refinement, feature extraction and feature matching. , Feature matching includes matching method, also with PPT, very worthy of study. Platform: |
Size: 3632128 |
Author:黄海源 |
Hits:
Description: 指纹识别程序,它包括了直方图均衡,Gabor滤波图像增强,方向图过滤,纹理细化,特征提取及特征匹配。其中,特征匹配包含了3种匹配方法,非常值得研究。-Fingerprint recognition program, which includes a histogram equalization, Gabor filter image enhancement, pattern filtering, texturing, thinning, feature extraction and feature matching. Which contains three kinds of feature matching matching method is very worthy of study. Platform: |
Size: 2980864 |
Author:zhen |
Hits: