Wednesday, April 14, 2004

Functions in Matlab to implement tracking

Input a sequence of images in Matlab:
img_number=3;
name = [ 'frame',num2str(img_number),'.bmp'];
IMG = double(imread( name ));
IMG = double (IMG)/255;
R = rgb2gray(IMG);

No comments:

Post a Comment