11 lines
215 B
Matlab
11 lines
215 B
Matlab
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;
|