?? 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@cubs.buffalo.edu, sharat@mit.edu
% http://www.sharat.org
%Reference:
%1. S. Chikkerur, C.Wu and V. Govindaraju, "Systematic approach for feature
%extraction in Fingerprint Images", ICBA 2004
%2. S. Chikkerur and V. Govindaraju, "Fingerprint Image Enhancement using
%STFT Analysis", International Workshop on Pattern Recognition for Crime
%Prevention, Security and Surveillance, ICAPR 2005
%3. S. Chikkeur, "Online Fingerprint Verification", M. S. Thesis,
%University at Buffalo, 2005
%4. T. Jea and V. Govindaraju, "A Minutia-Based Partial Fingerprint Recognition System",
%to appear in Pattern Recognition 2005
%5. S. Chikkerur, "K-plet and CBFS: A Graph based Fingerprint
% Representation and Matching Algorithm", submitted, ICB 2006
%
% 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 + -