标题:
Using C++ to get a video and calculate mean of picture
[打印本页]
作者:
frank_tw
时间:
2019-6-17 13:43
标题:
Using C++ to get a video and calculate mean of picture
Using C++ to get a video and calculate mean of picture
0.png
(6.49 KB, 下载次数: 77)
下载附件
2019-6-17 15:59 上传
单片机源程序如下:
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include <tchar.h>
//---------------------------------------------------------------------------
USEFORM("Unit1.cpp", Form1);
//---------------------------------------------------------------------------
int WINAPI _tWinMain(HINSTANCE, HINSTANCE, LPTSTR, int)
{
try
{
Application->Initialize();
Application->MainFormOnTaskBar = true;
Application->CreateForm(__classid(TForm1), &Form1);
Application->Run();
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
catch (...)
{
try
{
throw Exception("");
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
}
return 0;
}
//---------------------------------------------------------------------------
复制代码
所有资料51hei提供下载:
Video_test.7z
(3.84 MB, 下载次数: 3)
2019-6-17 15:59 上传
点击文件名下载附件
下载积分: 黑币 -5
欢迎光临 (http://www.51hei.com/bbs/)
Powered by Discuz! X3.1