humanfeatureset.cc

来自「VC视频对象的跟踪提取原代码(vc视频监控源码)」· CC 代码 · 共 31 行

CC
31
字号
/////////////////////////////////////////////////////////////////////////////////                                                                           ////  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 Setvoid HumanFeatureSet::draw(){    for (start(); current_ok(); forward())    {	get_current()->draw();    }}} // namespace ReadingPeopleTracker

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?