-
zaixianqianmingshibie
在线签名识别源程序,里面有三种算法实现还有应用实例(Signature identification online source, which has three kinds of algorithms have application implementation)
- 2009-03-25 20:44:08下载
- 积分:1
-
挂美加M1
说明: 只需要挂在美加一分钟就行 无需风控,系统根据两个货币的关系进行止损 止盈(It only needs to hang in the US and Canada for one minute without wind control. The system stops losses and stops earnings according to the relationship between the two currencies.)
- 2020-06-19 20:40:01下载
- 积分:1
-
sscom_MFC
MFC windows
- 2021-05-07 18:07:36下载
- 积分:1
-
网络是一个功能组件继承DataGridView。它可以节省它的。
SuperGrid is a functional component inherited of DataGridView. It can save its own settings in registry and has some usefull special properties which any program need.
- 2022-02-06 01:14:24下载
- 积分:1
-
创世纪的C++ Builder
创世纪的C++ Builder
--------------------------------------------------------------------------------
告别Hello World的年代
图形程式设计基本概念
具体而微的绘图程式
以C++ Builder处理Windows讯息(Message)
动态链结函式库(DLL-Dynamic Linked Library)
Install Shield的使用介绍
-Genesis of the C++ Builder farewell Hello World era of the basic concepts of graphics programming miniature graphics program to C++ Builder handle Windows messages (Message) dynamic link library (DLL-Dynamic Linked Library) Install Shield of introduce the use of
- 2022-07-07 02:11:01下载
- 积分:1
-
打印条形码code128
资源描述输入一串数值,然后可以打印出对应的条形码,可以选择打印机,code128类型的条形码,属于字体打印型,保证打出来清晰不模糊,采用的c#开发
- 2023-02-08 06:25:03下载
- 积分:1
-
11112321
毕业设计时制作的一套水位遥测自控系统,本系统以AT89S51单片机为主控单元,通过超声波传感器和液位变送器实现液位实时数据的检测和自动控制。系统分主控站与测控站,通过主控站的键盘可以实现对测控站的水位上下限的控制和显示。主控站与测控站之间的无线实时数据传输的解决方案采用广泛应用于无线抄表、工业数据采集系统和水文气象监控等领域的无线通信芯片nRF24L01组成无线高速数据收发模块。系统实现对所监控水位的短矩离无线测量与自动控制,利用GFSK实现数据高速传送以及较低的功耗。从测控站传送过来的数据通过人性化人机交换界面LCD1602实现数据的实时数据显示以及实现相应的报警提示。本系统通过单片机串口与电脑串口的通讯功能和利用互联网可以实现水位的远程测量与自动控制,这对江河水位的实时监控非常实用。本系统可能通过简单地调整就可以移植到其它物位系统与无线抄表系统,非常有研究价值。系统利用功能强大的C语言开发,并在软硬件设计中分别使用了Protel 99se 、keilC51开发平台。结果表明,该系统具有有性价比高、操作简便、可视化操作等优点.(The system main control unit MCU AT89S51 by ultrasonic liquid level sensors and liquid level transmitter implementation of real-time data detection and automatic control. System sub-master control station and the monitoring and control station, through the master control station s keyboard can be achieved on the water level monitoring station on the lower limit of the control and display. Master control station and the monitoring and control station in real time between the wireless data transmission solutions are widely used for wireless meter reading, industrial data acquisition systems and hydro-meteorological monitoring in areas such as wireless communications chip component nRF24L01 wireless high-speed data transceiver module. System monitoring the water level on the implementation of the short moments away from the wireless measurement and automatic control, the use of GFSK achieve high-speed data transmission and lower power consumption. From the monitoring station to send back )
- 2009-03-06 21:16:43下载
- 积分:1
-
002
指纹图像因设备、图像增强处理等原因造成的纹线断裂会产生伪特征点,会对指纹识别产生负面影响。在结
合传统方法优点的同时,针对间距大、方向偏移小和间距大、方向偏移大的断裂情况,本文设计出窗口制约法和改进的
窗口制约法2 种不同的修复方法。实验结果表明,该方法使修复更加全面、完整,提高了伪特征点去除率,易于编程实
现,对细化指纹图像的断裂有很好的修复效果。(The broken ridge fingerprint image processing equipment, image enhancement and other causes will generate pseudo-feature points to be a negative impact on fingerprint identification. While combining the traditional method has the advantage, for the spacing, direction offset small spacing, direction offset large fracture situation, this design window constraints window method and the improved two kinds of constraints, different repair methods. Experimental results show the method to fix a more comprehensive and complete removal of pseudo-feature points, easy to program, well thinned fingerprint image fracture repair.)
- 2013-03-17 22:06:01下载
- 积分:1
-
C#在JPG图片上添加半透明文字水印
C#在图片上添加文字,这个仿PhotoShop的功能,用C#可以轻松实现哦,对象为JPG图像,可在上面添加半透明的文字效果,不能可看作是一种图片添加水印的效果,文字是半透明处理了,可隐约看到文字下层的图像细节。
private void Form1_Load(object sender, EventArgs e)
{//在指定图像上添加半透明文字
string MyFileName = "Forest.jpg";
Image MyImage = Image.FromFile(MyFileName);
Graphics g = Graphics.FromImage(MyImage);
String MyText = "国家";
Font MyFont = new Font("宋体", 150);
SolidBrush MyBrush = new SolidBrush(Color.FromArgb(18, 255, 0, 255));
g.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.GammaCorrected;
g.DrawString(MyText, MyFont, MyBrush, 10, 10);
this.pictureBox1.Image = MyImage;
}
- 2023-02-17 00:50:03下载
- 积分:1
-
opencv 灰度直方图
现将图像进行转化为单通道,在对单通道的图像处理,统计图像中像素点的分布情况,为后续的均衡化等提供支持,也可以在图像处理中减小数据的量,从而加快运行时间或者算法的时间,从实际上来说彩色图像是3通道,灰度是单通道,但是灰度图像仍保留了大量的信息。此例子也可以为初学者做一个展示。
- 2022-04-18 11:44:59下载
- 积分:1