ieee1394source_test.cc
来自「VC视频对象的跟踪提取原代码(vc视频监控源码)」· CC 代码 · 共 37 行
CC
37 行
///////////////////////////////////////////////////////////////////////////////// //// FILENAME : IEEE1394Source_test.cc //// //// PURPOSE : test case for the IEEE1394Source class // /////////////////////////////////////////////////////////////////////////////////#include "IEEE1394Source.h"#include "text_output.h"using namespace ReadingPeopleTracker;int main(){ cdebug << " IEEE1394Source_test :" << " Started." << endl; IEEE1394Source *source = new IEEE1394Source(DV_QUALITY_BEST); Image *image; for (int i = 0; i < 500; i++) { image = source->get_next(); image->display(); } return 0; }// Local Variables:// compile-command: "make IEEE1394Source_test |& fgrep :"// End:
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?