-
sy1
用matlab实现读入图像,并显示图像,及存取图像中的任意像素值(Read into the image using matlab implementation, and display images, and access any pixel in the image)
- 2010-10-25 09:54:42下载
- 积分:1
-
COMPUTER_GRAPHICS
本程序实现了计算机图形学的一些重要算法(画直线,画圆,画椭圆,区域填充,图形裁剪,齿轮生成,三次样条曲线等等),源码和可执行程序均打包于文件中(this program is implemented some important algorithm of computer graphics such as drawing lines,drawing circles,drawing ellipse,area filling,Graphics clipping,gear wheel generation ,three times spline curve and so on),source code and executable
files are all included in the compressed
file。 )
- 2020-11-24 16:19:32下载
- 积分:1
-
ASP.NET
C#课程源码,配套孙士保(电子工业出版社2012),很详细,很实用(C# program source code, supporting SUN Shi-bao (Electronic Industry Publishing House 2012), very detailed, very practical)
- 2013-12-16 10:04:51下载
- 积分:1
-
OpenGL-Earth-Model
用Qt5环境OpenGL接口实现地球模型,可以通过鼠标转动(Earth model with Qt5 environment to achieve OpenGL interface, you can rotate by mouse)
- 2014-05-06 19:42:50下载
- 积分:1
-
fft_scope
此程序用于430单片机,通过单片机采样波形,再对此波形进行快速傅里叶变换,并将变换的结果用12864显示出来(This program is used 430 microcontroller, through the microcontroller sampled waveform, then this waveform fast Fourier transform, and the result of the transformation is displayed with 12864)
- 2013-08-24 20:23:12下载
- 积分:1
-
DBO
说明: 对数据库访问的封装,简化调用代码,优化调用流程, 支持多种调用方式。(Encapsulation of database access, simplification of calling code, optimization of calling process, support of multiple calling methods.)
- 2020-05-30 09:28:07下载
- 积分:1
-
可以自动生成BCC校验码,经检验程序无错
可以自动生成BCC校验码,经检验程序无错-BCC check can be automatically generated code, error-free by the testing procedures
- 2023-06-20 18:00:03下载
- 积分:1
-
internal-staffs-learning-materials
华为内部员工学习资料,对于想进华为的朋友会有很大帮助。(The internal staff s learning materials
in huawei is more helpfull for someone who want to go huawei.)
- 2012-02-17 11:43:08下载
- 积分:1
-
C# SQL Server数据库连接
【实例源码】朋友们好,该功能在测试中突然发现,通过Windows身份验证时,服务器IP与数据库值为空的时候,测试连接也会提示连接成功,这个BUG请大家给予帮助,谢谢!using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Data;using System.Data.SqlClient;namespace ConData{ public partial class ConnectionData : Form { public ConnectionData() { InitializeComponent(); } private void btnSQLOK_Click(object sender, EventArgs e) { string strcon = string.Format("server={0};database={1};uid={2};pwd={3};", this.txtIP.Text.Trim(), txtDataBase.Text.Trim(), txtUser.Text.Trim(), txtPwd.Text.Trim()); try { using (SqlConnection con = new SqlConnection(strcon)) { con.Open(); MessageBox.Show("测试成功!"); con.Close(); } } catch (Exception ex) { MessageBox.Show(ex.Message); } } private void btnWindowsOK_Click(object sender, EventArgs e) { string strCon = string.Format("server={0};database={1};Trusted_Connection=SSPI", txtWindowsIP.Text.Trim(), txtWindowsDB.Text.Trim()); try { using (SqlConnection con = new SqlConnection(strCon)) { con.Open(); MessageBox.Show("测试成功!"); con.Close(); } } catch (Exception ex) { MessageBox.Show(ex.Message); } } }}
- 2014-07-11下载
- 积分:1
-
Dijkstra
说明: 可实现Dijkstra算法,显示起始点到其它各节点的最短距离和路径(Dijkstra algorithm can be implemented to show the shortest distance and path from the starting point to other nodes.)
- 2020-06-25 02:00:02下载
- 积分:1