www.pudn.com > ReadingPeopleTracker-1.28.rar > HumanFeatureSet.cc
///////////////////////////////////////////////////////////////////////////////
// //
// HumanFeatureSet.cc //
// //
// A list of tracked objects with detected human features such as head etc //
// //
// Author : Nils T Siebel (nts) //
// Created : Tue Apr 17 15:57:52 BST 2001 //
// Revision : 0.1 of Thu Apr 19 12:19:58 BST 2001 //
// Copyright : The University of Reading //
// //
///////////////////////////////////////////////////////////////////////////////
#include "HumanFeatureSet.h"
namespace ReadingPeopleTracker
{
static const char *HumanFeatureSet_Revision = "@(#) HumanFeatureSet.cc, rev 0.1 of Thu Apr 19 12:19:58 BST 2001, Author Nils T Siebel, Copyright (c) 2001 The University of Reading";
// draw all HumanFeatures in this Set
void HumanFeatureSet::draw()
{
for (start(); current_ok(); forward())
{
get_current()->draw();
}
}
} // namespace ReadingPeopleTracker