-
Winsock
关于网络编程客户端之间相互监听的网络编程程序代码(Programming on the network between the client network programming code monitor)
- 2010-12-19 23:20:09下载
- 积分:1
-
Video-Demo
该源码为目标检测和跟踪算法 包括:
1. 静态背景下的背景预测法目标检测
2. 静态背景下帧间差分法目标检测
3. Mean Shift目标跟踪方法
4. 重心多目标跟踪方法
(The source code for target detection and tracking algorithm include:
1 Static background background prediction target detection
2 Static background frame difference method for target detection
3. Mean Shift tracking method
4 multi-target tracking methods focus)
- 2013-08-11 20:39:39下载
- 积分:1
-
C# 键盘Ctrl+g控制蜂鸣器播放声音
Visual C#播放声音,运行程序后,操作键盘上的Ctrl+g组合键发出蜂鸣声...这里的拖放声音是蜂鸣声,从音箱里发出,并不是从机箱的蜂鸣器发声。实现的过程和细节代码如下:
//导入 Windows Beep() API 函数
[DllImport("kernel32.dll")]
private static extern bool Beep(int freq, int dur);
// 定义PlaySound()要使用的常数
public const int SND_FILENAME = 0x00020000;
public const int SND_ASYNC = 0x0001;
// 导入 Windows PlaySound() 函数
[DllImport("winmm.dll")]
public static extern bool PlaySound(string pszSound,
int hmod,
int fdwSound);
[STAThread]
static void Main(string[] args)
{
// 使用Ctrl+g发出蜂鸣声
Console.Write("a");
Console.WriteLine("使用Ctrl+g发出蜂鸣声...");
Console.ReadLine();
// 使用 Windows API 发出蜂鸣声
Beep(800, 200);
Console.WriteLine("使用 Windows API 发出蜂鸣声...");
Console.ReadLine();
// 播放bells.wav文件
PlaySound("bells.wav",
0,
SND_FILENAME | SND_ASYNC);
Console.WriteLine("播放bells.wav文件...");
Console.ReadLine();
}
- 2022-05-23 17:14:52下载
- 积分:1
-
CXinManagementSystem
实现对access数据库的增删改查操作
使用GDI+技术进行界面绘制
使用skin界面着色库进行界面着色美化
利用数据库记录的数据进行价格走势图的绘制
利用数据库记录的数据埋行价格对比图的绘制
MFC CListCtrl 显示数据库记录
MFC 基于对话框的页面切换技术
源码中有简要的使用说明书(Achieve access database CRUD operation using GDI+ technology mapping interface interface using skin coloring coloring landscaping use interface library database records data Jiagezoushitu drawing data using the database records buried line price comparison mapping MFC CListCtrl display database records MFC dialog-based source code page switching technology with a brief manual)
- 2013-08-01 10:45:46下载
- 积分:1
-
ScreenKinescope
用C#实现的录屏软件,录制为AVI格式。获取文件大小及帧数,然后输入开始帧数和结束帧数,单击“分割”按钮,即可分割该视频文件。(C# implementation with screen recording software, recording to AVI format. Get the file size and number of frames, and then enter the start and end frame number of frames, click the " Split" button, you can split the video file.)
- 2011-06-04 23:07:20下载
- 积分:1
-
ISO_CPP_11
C++11的官方文档,英文版,用于学习C++11.(C++ 11 official document, English version, for learning C++ 11.)
- 2019-03-16 23:43:08下载
- 积分:1
-
使用C#实现了一个三维茶壶模型,可以对茶壶进行旋转操作
使用C#实现了一个三维茶壶模型,可以对茶壶进行旋转操作-it use c# to simulate a teaplot
- 2022-03-12 02:07:41下载
- 积分:1
-
MSIIVP
简单的聊天系统,本程序是使用vc进行编程的,可以学习的()
- 2018-04-10 14:59:50下载
- 积分:1
-
输出可调SPWM波形
输出可调SPWM波形,带PI调节,可用于逆变器,变频器,调压器等(out put SPWM)
- 2012-04-01 17:32:51下载
- 积分:1
-
模糊PID温度控制
说明: 基于STM32F103的PID温度控制,未调整PID值(PID temperature control based on STM32F103, PID value is not adjusted)
- 2021-01-17 11:30:19下载
- 积分:1