10 lines
238 B
Mathematica
10 lines
238 B
Mathematica
|
function F=extractRandom(img)
|
||
|
|
||
|
F=rand(1,30);
|
||
|
|
||
|
% Returns a row [rand rand .... rand] representing an image descriptor
|
||
|
% computed from image 'img'
|
||
|
|
||
|
% Note img is a normalised RGB image i.e. colours range [0,1] not [0,255].
|
||
|
|
||
|
return;
|