-
blur
本文是中值滤波的一些应用,个人觉得中值滤波比一些算子滤波效果要好得多(This article is median filtering applications, personal feel median filter is much better than some of the filtering effect of the operator)
- 2012-10-09 20:26:27下载
- 积分:1
-
c# 《21天精通编程》课件
含ppt 非常实用
- 2014-01-16下载
- 积分:1
-
shutdown
说明: VC++6.0编译,实现关机、重启、注销功能的实现(VC++6.0 compiler to achieve shutdown, restart, log off function of the realization)
- 2011-04-12 20:06:48下载
- 积分:1
-
Graphic-Draw
说明: 图形绘制,可设置线宽、颜色、样式,通过本例将了解如何使用自定义画笔定义线体的颜色,线宽,线形等,以及如何为程序中添加选项菜单和选项设置对话框,如何使用标准颜色对话框,如何使用字体对话框,在选项对话框中实现预览功能。实现选项对话框和窗口类中的数据交换。如何改变对话框和控件的背景色,如何改变控件的文本颜色,对按钮控件的特殊处理。如何在窗口中显示一幅位图。(VC++ graphics rendering, can set the line width, color, style, through this example will learn how to use custom brushes defined line of body color, line width, line, etc., and how to add options for the program menus and options in Settings dialog box How to use the standard color dialog box, how to use the Font dialog box, implemented in the Options dialog box preview. Implementation Options dialog box and window class data exchange. How to change the background color of dialog boxes and controls, how to change the control' s text color on button controls the special treatment. How in the window display a bitmap.)
- 2011-04-14 17:48:50下载
- 积分:1
-
7
相变UDF,包括质量传递和热量传递,能够进行气液相变的模拟(Phase transition UDF, including mass transfer and heat transfer, gas-liquid phase transition can be simulated)
- 2021-03-02 15:09:34下载
- 积分:1
-
111
说明: 用数码管显示电压,发送到串口,然后有高低电压报警,只有部分代码(Display voltage with digital tube, send it to serial port, then alarm with high and low voltage, only part of the code)
- 2020-06-22 14:40:01下载
- 积分:1
-
ReadAndWriteBinaryFile
C#二进制文件读写实例(WinForm实现),保证打开就可用!(C# example of binary file reading and writing (WinForm implementation), ensure that you can use to open!)
- 2009-12-09 15:56:58下载
- 积分:1
-
cvPyrSegmentation
说明: 图像分割的一种方法,基于图像金字塔,用OpenCV+VC实现的~~(A method of image segmentation, image-based pyramid, with the implementation of OpenCV+ VC ~ ~)
- 2011-04-13 20:10:18下载
- 积分:1
-
C# 只允许运行一个程序实例的方法及代码
Visual C# 设置程序只能运行一个实例,当用户再次打开同一窗口时,会弹出提示,告诉你本程序已经在运行了,具体的实现代码参考如下:
设置程序只能运行一个实例:
var MyModuleName = System.Diagnostics.Process.GetCurrentProcess().MainModule.ModuleName;
var MyProcessName =System.IO.Path.GetFileNameWithoutExtension(MyModuleName);
System.Diagnostics.Process[] MyProcesses = System.Diagnostics.Process.GetProcessesByName(MyProcessName);
if (MyProcesses.Length > 1)
{
MessageBox.Show("程序已经运行!", "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
this.Close();
}
- 2023-03-23 03:40:03下载
- 积分:1
-
sl
扫雷外挂,自动扫雷,通过模拟人的思考过程进行计算(De-mining plug-in, automatic de-mining)
- 2009-12-10 14:02:09下载
- 积分:1