www.pudn.com > 人体步态跟踪识别bate版.rar > WalkerTest.cpp
// WalkerTest.cpp: implementation of the CWalkerTest class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "humantrack.h"
#include "WalkerTest.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CWalkerTest::CWalkerTest()
{
// Set Control Panel
cp.setLayout(new GridLayout(1, 2, 5, 5));
messageWindow.setEditable(false);
Panel setAnimationPanel = getSetAnimationPanel();
cp.add(messageWindow);
cp.add(setAnimationPanel);
// Set WalkerTest
setLayout(new GridLayout(2, 1));
setSize(600, 300);
add(canvas);
add(cp);
}
CWalkerTest::~CWalkerTest()
{
}