imagesource.cc

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

CC
29
字号
/* * ImageSource.cc * * a general image source class * */#include "ImageSource.h"namespace ReadingPeopleTracker{long ImageSource::display(long window){#ifdef NO_DISPLAY    return NULLWIN;#else    if (get_current() == NULL)	return NULLWIN;        if (imgsrc_window_title[0] != 0)	current->set_title(imgsrc_window_title);  // overriding Image::window_title        return current->display(window);#endif  //ifndef NO_DISPLAY}} // namespace ReadingPeopleTracker

⌨️ 快捷键说明

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