image thumbnail
from March 2012 demo files for "Computer Vision with MATLAB" by Bruce Tannenbaum
Demo files for "Computer Vision with MATLAB" held on March 2012.

matching_fcn(ref_features, vid_features, th)
%% Copyright 2011-2012 The MathWorks, Inc.
% This can be used to improve the speed of matchFeatures.  It requires
% MATLAB Coder.
%

function index_pairs = matching_fcn(ref_features, vid_features, th)
%#codegen
index_pairs = matchFeatures(ref_features, vid_features, 'MatchThreshold', th);

Contact us