visual-search/cvpr_compare_random.m

11 lines
215 B
Mathematica
Raw Normal View History

2019-11-07 16:36:30 +00:00
function dst=cvpr_compare_random(F1, F2)
% This function should compare F1 to F2 - i.e. compute the distance
% between the two descriptors
% For now it just returns a random number
dst=rand();
return;