-
small.b0t.C
A small IRC base bot written in C++
- 2009-11-14 15:34:53下载
- 积分:1
-
VCPP-image-processing-chapter03
VisualC++数字图像处理技术详解第2版光盘-第三章(VisualC++ digital image processing technology Detailed Version 2 CD- Chapter 3)
- 2016-04-16 13:22:08下载
- 积分:1
-
Matrix矩阵运算
矩阵的乘法、加法、减法、数乘和转置。README 中有详细的介绍//=========================================================================================
/* Name: matrix.h
* Description: declare matrix addition, subtraction and multiplication and so on.
* Note: 参与运算和存储的数组元素类型必须为 matrix_t ,否则出错
* Author: Sun Hubing
* Date: 2018/5/3 - 2018/6/10
* Email: shbmmd@163.com
*/
//=========================================================================================
#ifndef MATRIX_H
#define MATRIX_H
typedef int matrix_t; // 矩阵元素的数据类型
typedef unsigned int uint; // 用来计数
/* 矩阵的行列相乘
* 如果矩阵 a 和 b 的行列不满足条件,返回NULL
* 如果c = NULL,则申请一块内存存储结果,否则存在 c 中
* Note: c 可以等于 a 或 b
*/
void *mul_matrix(const void *a, const void *b, void *c, uint a_row, uint a_col, uint b_row, uint b_col);
/* 矩阵的加法
* 如果参数非法,返回NULL
* 如果c = NULL,则申请一块内存存储结果,否则存在 c 中
* Note: c 可以等于 a 或 b
* 不检查a
- 2022-03-21 07:44:36下载
- 积分:1
-
5510
使用stm32f103rbt6实现对5510液晶的驱动,主要包括二值图形的显示(Use stm32f103rbt6 LCD driver 5510 to achieve, including the binary graphics display)
- 2013-09-21 09:00:32下载
- 积分:1
-
jiaotongzixun
数据结构的课程设计,做的是一个交通查询,主要用到图的算法,和大家共享,欢迎指正!(Data structure curriculum design, do a query traffic, mainly used graph algorithms, and share, please correct me!)
- 2013-10-28 18:49:11下载
- 积分:1
-
STM32F103-2017全国电子设计大赛接收端代码
STM32F103-2017全国电子设计大赛接收端代码
2017年电子设计大赛H题(STM32F103-2017 National Electronic Design Competition Receiver Code
Question H of 2017 Electronic Design Competition)
- 2020-06-19 09:15:41下载
- 积分:1
-
Linux设备驱动
说明: linux驱动开发基础资料,同时包括测试代码(Linux driver development infrastructure, including test code)
- 2020-06-22 11:40:01下载
- 积分:1
-
AES
AES压缩技术编程源代码,包含压缩和解压全套源代码的完整工程(AES compression technology programming source code, including compression and decompression full source code of complete project
)
- 2015-12-24 11:09:07下载
- 积分:1
-
sniffer
第十二章:发布数据库系统,InstallShield这一常用的打包工具,讲解软件打包
发布的过程。
第十三章:用户登录功能模块,应用了ODBC访问数据库的技术,使用最基本的查询语句。
第十四章:用户信息管理模块,应用了ODBC访问数据库的技术,用CRecordset对象做
为操作数据库的手段,并运用增删改查的数据库常用查询语句。
第十五章:网页浏览和网址限制功能模块,利用数据库中的网址记录,通过查询匹配
限制用户对某些特定网址的访问,并作访问记录,主要应用DAO方式访问数据库的技术,
CDaoRecordSet对象做为操作数据库的手段,并灵活运用了多种SQL查询语句。
第十六章: 住户管理系统,主要用了OLE DB操纵数据库的手段。
第十七章:物流单据管理模块,主要用了ADO对象操纵数据库的技术手段。
第十八章:研究生信息管理系统,主要用了ADO对象操纵数据库的技术手段,并在使用
ADO的技术中灵活运用了OLE DB的数据库连接操纵方法、多条SQL查询语句、控件Combo
Box与ActiveX控件ADO Data Control和DataGrid Control。
全部是vc6.0编写
(Chapter 12: publication database system, InstallShield package that commonly used tools to explain the process of publishing software package. Chapter 13: user login function module, the application of the ODBC database access technology, using the most basic query. Chapter 14: User information management module, the application of the ODBC database access technology, using CRecordset object as a means to manipulate the database, and use common CRUD database query. Chapter 15: Web browsing and URL restriction function module, using the URL database records, all vc6.0 prepared)
- 2013-06-24 15:49:10下载
- 积分:1
-
sobel函数用法示例
调用sobel函数 进行边缘检测 结合了高斯平滑和微分求导 是一种经典的边缘检测算子(Calling Sobel function for edge detection)
- 2017-11-21 14:01:06下载
- 积分:1