-
红外目标跟踪程序
利用Vc++编写的红外目标跟踪程序,具有非常好的鲁棒性,适用于动目标的检测和跟踪,希望对大家有帮助!!!
- 2023-03-12 10:50:04下载
- 积分:1
-
MFC俄罗斯方块
Windows下基于MFC的俄罗斯方块,拥有绚丽的界面。对于方块使用4*4的数组进行存储,游戏所在的墙同样使用数组存储,每次由定时器触发一次更新,如果方块能够下降则下降,否则随机生成一个方块以及一种颜色,通过每次下降前做碰撞检测来实现。
- 2022-02-28 18:45:13下载
- 积分:1
-
顺序队列C实现
#include "stdio.h" #include "stdlib.h" #include "io.h" #include "math.h" #include "time.h"#define OK 1#define ERROR 0#define TRUE 1#define FALSE 0#define MAXSIZE 20 /* 存储空间初始分配量 */typedef int Status; typedef int QElemType; /* QElemType类型根据实际情况而定,这里假设为int *//* 循环队列的顺序存储结构 */typedef struct{ QElemType data[MAXSIZE]; int front; /* 头指针 */ int rear; /* 尾指针,若队列不空,指向队列尾元素的下一个位置 */}SqQueue;Status visit(QElemType c){ printf("%d ",c); return OK;}/* 初始化一个空队列Q */Status Init
- 2022-08-13 11:29:01下载
- 积分:1
-
独立的AVL的存储介质是在大量的AVL TRE现在可用…
独立于AVL库的存储媒体
虽现在有不少可用的AVL树库,但几乎都是工作在RAM中,当数据量小的时候,这种方式可行,但当树结构变大时时,读取和存储的时间就会大大变长,任务效率大大降低。能不能直接用磁盘进行树的操作呢?若可以,就不必进行频繁的磁盘内存交换了,本程序就实现了这个功能。实际上,这个程序无论是磁盘还是内存,都很好用。-independent of the AVL storage media is now available in a number of the AVL tree, But almost all work in the RAM, when a small amount of data, this approach feasible, but big tree structure constant, read and storage time will be much longer and the task efficiency has been greatly reduced. Can directly use the disk tree operation? If so, there is no need for frequent exchange of disk memory, the process to achieve this function. In fact, this procedure is disk or memory, are very handy.
- 2022-04-09 22:19:08下载
- 积分:1
-
多种编解码的小程序,支持bin<
多种编解码的小程序,支持binhex,binc array,url和utf7即base64-various codecs of small programs to support binlt;- Gt; Hex, binlt;- Gt; C array, url and utf7 that base64
- 2022-05-26 19:29:46下载
- 积分:1
-
BDF法解分数阶微分方程
BDF法解分数阶微分方程-BDF method of fractional differential equations
- 2023-01-06 23:15:03下载
- 积分:1
-
模糊洗衣机系统,通过对衣服干净程度的判断来控制水温,洗衣时间长短以及洗衣粉用量。...
模糊洗衣机系统,通过对衣服干净程度的判断来控制水温,洗衣时间长短以及洗衣粉用量。-Fuzzy washing system, through the clean clothes to determine the extent to control water temperature, the length of time as well as laundry detergent dosage.
- 2022-05-27 17:48:43下载
- 积分:1
-
不使用递归的快速排序法
不使用递归的快速排序法-Quick sort without using recursive
- 2023-01-30 18:50:04下载
- 积分:1
-
本论文介绍了一种新的校正铂电阻传感器非线性的数学方法.
本论文介绍了一种新的校正铂电阻传感器非线性的数学方法.-This paper introduce a new calibration of platinum resistance sensor non-linear mathematical method.
- 2022-12-18 19:45:03下载
- 积分:1
-
K-Means算法 mapreduce
public class KmeansMapper extends MapReduceBase implements
Mapper {
// one coodinate(data)
private List coordinate = new ArrayList();
private BasicKMeansTool basicKmeans = new BasicKMeansTool();
public void map(LongWritable key, Text value,
OutputCollector midoutput,
Reporter arg3) throws IOException {
// TODO Auto-generated method stub
String line = value.toString();
String[] dataList = line.split(",");
List distances = null;
StringTokenizer itr;
for (int i = 0; i < dataList.length; i++) {
itr = new StringTokenizer(dataList[i]);
&nbs
- 2023-02-01 17:45:04下载
- 积分:1