-
CBIR
关于CBIR的论文,非常有用,使您轻松掌握常用技巧,取得事半功倍的效果。(About CBIR papers, very useful, allowing you to easily master the techniques used to obtain a multiplier effect.)
- 2014-05-25 22:00:31下载
- 积分:1
-
C#连接电脑摄像头 实例源码
C#连接摄像头,可以干好多事情了,自己扩展,这个只是个demo
- 2016-12-14下载
- 积分:1
-
YCArray
说明: /**
* 动态数组的模板类
* 1.支持字符索引
* 2.方便的添加删除修改任意一项
* 最后更新 2004-8-9 yzh
**1.优化了字符索引的运作方式,使用数组存储
**2.重写了底层数据的存储,将连续性的存储方式改为了非连续,
*** 从而很好有效地支持了“引用”,并且让数据的删除增加变的更为快速
* 用法如:
* YCArray<int,int> test
* test.Add("Number2",4)
* test.Add("Number1",2)
* printf("%d %d",test["Number1"],test["Number2"])
* 显示:
* 2 4
*******
*******
History:
2004-11-19
修改了析构函数,解决了索引没有释放的bug
**/(/*** dynamic array template class* 1. Support characters Index* 2. Add convenience to delete arbitrary* a final update 2004-8-9 yzh** 1. Character Index optimized mode of operation, the use of storage arrays** 2 . a rewrite of the underlying data storage, storage continuity conversion of non-continuous, and thus good*** effective support to the "quote", and let the data changed to delete the more rapid* usage such as :* YCArraylt; int, intgt; test* test. Add ( "Number2", 4)* test.Add ( "Number1", 2)* printf ( "% d% d", test [ "Number1"] test [ "Number2"])* Display :** 2 4************* History : 2004-11-19 revised the destructors, the index did not address the release of bug** /)
- 2005-09-06 13:03:51下载
- 积分:1
-
operatingsystem
操作系统页面置换 调度 寻道程序
简短使用(Page seek replacement operating system scheduling procedures)
- 2009-05-17 08:09:54下载
- 积分:1
-
PWM50K
说明: 能够输出50kHZ,占空比50%的带死区的互补PWM(Complementary PWM with dead zone and 50% duty cycle can output 50kHZ)
- 2020-06-20 04:40:01下载
- 积分:1
-
HCI_Lab2
This program detects the available wireless networks ad provides you with the strength of each network
- 2014-04-27 00:40:04下载
- 积分:1
-
c++小游戏
初学者的小游戏,可以同过控制人物移动推进任务剧情的进行。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。
- 2022-02-09 22:39:15下载
- 积分: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
-
lab20-PWM
说明: DSP28335产生10KHZ方波的例程,包含完整的工程文件,打开即可使用。适用于ccs6.0以上版本(The routine of 10KHZ square wave generated by DSP28335 contains complete engineering files, which can be opened and used. Suitable for CCS version 6.0 or above)
- 2020-06-16 09:20:01下载
- 积分:1
-
onvif
onvif协议部分功能实现,可以做完入门学习研究。(The onvif protocol is partially implemented.)
- 2018-03-10 13:57:23下载
- 积分:1