-
Kalman
这个是卡尔曼滤波器的源码,主要用于视频序列的预测跟踪。(This is the source of the Kalman filter, mainly for video sequence tracking the prediction.)
- 2008-04-17 18:03:40下载
- 积分:1
-
VC++6.0 在程序内注册ActiveX控件的例子源码
VC++6.0 在程序内注册ActiveX控件的例子源码,在程序中动态注册控件到Windows系统中,注册后所依赖该控件的程序才可正常运行。核心代码如下:
//加载ActiveX控件
HINSTANCE hLib = LoadLibrary(lpszDllName);
if (hLib == NULL)
{
TRACE(_T("%s加载失败
"), lpszDllName);
return FALSE;
}
//获得注册函数DllRegisterServer地址
FARPROC lpDllEntryPoint;
lpDllEntryPoint = GetProcAddress(hLib, _T("DllRegisterServer"));
//调用注册函数DllRegisterServer
if (lpDllEntryPoint != NULL)
{
if (FAILED((*lpDllEntryPoint)()))
{
TRACE(_T("调用DllRegisterServer失败
"));
FreeLibrary(hLib);
return FALSE;
}
else
{
FreeLibrary(hLib);
return TRUE;
}
}
else
{
TRACE(_T("调用DllRegisterServer失败
"));
FreeLibrary(hLib);
return FALSE;
}
更多代码请下载本源码包。
- 2022-08-18 20:45:44下载
- 积分:1
-
odrViewer64.1.9
odrviewer orginal for openDrive
- 2021-01-05 10:08:54下载
- 积分:1
-
Lx
说明: 风特性基本分析,基于泰勒函数简算湍流积分尺度(Simple calculation of the integral scale of turbulence)
- 2018-06-29 17:46:01下载
- 积分:1
-
SVR
说明: 一个例子,展现支持向量回归机(SVR)的实际使用(A example to show how to use the SVR)
- 2019-02-21 09:46:54下载
- 积分:1
-
制作软盘镜像文件核心代码,希望对磁盘镜像学习者能有一定启示...
制作软盘镜像文件核心代码,希望对磁盘镜像学习者能有一定启示-floppy disk image file produced the core code, and I hope to disk mirroring learners can have a certain amount Inspiration
- 2022-07-18 14:53:32下载
- 积分:1
-
Labview的入门教材,word版的,内容挺不错。
Labview的入门教材,word版的,内容挺不错。-Labview entry materials, word version of the content very good.
- 2022-07-24 05:33:46下载
- 积分:1
-
main.cpp
图像操作中比较基础的就是透视变换,初进open cv,实现了透视变换,代码如压缩吧所示(Perspective transformation by opencv)
- 2017-10-04 00:12:57下载
- 积分:1
-
object_envi_resize__define
说明: 利用ENVI进行图层重采样程序,c#中可以正常调用(use ENVI TO resize for layer)
- 2021-04-02 10:41:32下载
- 积分:1
-
IP查询源代码..原理简单..适合初学者学习
IP查询源代码..原理简单..适合初学者学习-IP query the source code .. simple .. suitable for beginners to learn
- 2023-06-09 23:55:03下载
- 积分:1