diff --git a/doc/基于热成像技术的无人机自动跟踪系统的需求构思及描述.docx b/doc/基于热成像技术的无人机自动跟踪系统的需求构思及描述.docx new file mode 100644 index 0000000..d942afe Binary files /dev/null and b/doc/基于热成像技术的无人机自动跟踪系统的需求构思及描述.docx differ diff --git a/doc/基于热成像技术的无人机自动跟踪软件需求规格说明书.docx b/doc/基于热成像技术的无人机自动跟踪软件需求规格说明书.docx new file mode 100644 index 0000000..d857413 Binary files /dev/null and b/doc/基于热成像技术的无人机自动跟踪软件需求规格说明书.docx differ diff --git a/model/基于热成像技术的无人机自动跟踪系统的分析和设计模型.docx b/model/基于热成像技术的无人机自动跟踪系统的分析和设计模型.docx new file mode 100644 index 0000000..fae56b8 Binary files /dev/null and b/model/基于热成像技术的无人机自动跟踪系统的分析和设计模型.docx differ diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..42cd38e --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,28 @@ +#include "widget.h" +#include +#include + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + + // print SDK Version + qDebug() << "ViewLink SDK Version: " << GetSDKVersion(); + + // initialize SDK + VLK_Init(); + + + Widget w; + w.show(); + + int ret = a.exec(); + + // diconnect all + VLK_Disconnect(); + + // uninitialize SDK + VLK_UnInit(); + + return ret; +}