├── Camera 相机模块
├── Codec 编码压缩模块
├── Control 控制模块
├── Detection 识别模块
├── QT-UI qt模块(即本目录下其他文件组成)
└── Transporter 推流模块
.
├── demo
│ ├── CMakeLists.txt
│ └── Demo.cpp
├── include
│ └── header.hpp
├── README.md
└── src
└── source.cpp
openCV >=4.40
QT >=5.1
....(TODO)
只需在qtcreator中像正常项目打开构建即可
$ cd you/path/to/project
$ qmake -makefile
// change to you Compiler
$ make -j4
TO DO