cubs_match.m

来自「指纹识别 这个是TOOLBOX」· M 代码 · 共 29 行

M
29
字号
%--------------------------------------------------------------------------
%  Version 1.0 March 2005
%  Copyright (c) 2005-2010 by Center for Unified Biometrics and Sensors
%  www.cubs.buffalo.edu
%
%cubs_match
% compares the two template files and returns a matching score (0-100)
% 0 = not similar 100 = similar
%syntax:
%cubs_match(in_file,gal_file)
%in_file[IN]      =     input template
%gal_file[IN]     =     gallery template
%Contact:
%   ssc5@eng.buffalo.edu
%   www.eng.buffalo.edu/~ssc5
%Reference:
%S. Chikkerur,C. Wu and Govindaraju, "A Systematic approach for 
%feature extraction in fingerprint images",ICBA 2004
%T. Jea and V. Govindaraju, "A Minutia-Based Partial Fingerprint Recognition System", 
%to appear in Pattern Recognition 2005
%
% See also: cubs_enroll
%--------------------------------------------------------------------------
function score = cubs_match(in_file,gal_file)
    %------------------------------
    %call implementation file
    %------------------------------
    score = cubs_match_internal(in_file,gal_file);
%end function

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?