camshift - Track an object by color. It gets the object position, size and orientation.
The function implements CAMSHIFT object tracking algorithm. When using it, please first use obj_win=camshift(im, init_win) to initialize the tracker, then use obj_win=camshift(im) to track the object.
n = aviopen(SCI+'/contrib/sivp-svn-trunk/images/red_car_video.avi');
im = avireadframe(n); //get a frame
obj_win = camshift(im, [12, 6, 39, 13]); //initialize tracker
while ~isempty(im),
obj_win = camshift(im); //camshift tracking
im = rectangle(im, obj_win, [0,255,0]);
imshow(im);
im = avireadframe(n);
end;
aviclose(n);
"Computer vision face tracking as a component of a perceptual user interface", G.R. Bradski, in Workshop on Applications of Computer Vision, pages 214, Princeton, NJ, Oct. 1998.