📄 cubs_match.m
字号:
%--------------------------------------------------------------------------
% 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -