-
CROUT REDUTION ALGORITHM
&求解N乘N线性系统
- 2022-02-06 19:18:05下载
- 积分:1
-
打开bmp图
打开bmp图程序,精简!vc环境使用CDib类打开bmp格式图片的工程,可运行。
- 2022-07-20 05:31:44下载
- 积分:1
-
importation of X, Y coordinates, fitting Park, using the least square fitting, I...
输入X,Y坐标,拟合公园,采用最小二乘法拟合,本人测试
- 2022-03-28 16:44:06下载
- 积分:1
-
刚刚下载的指纹识别程序,我还没来的及看呢?
刚刚下载的指纹识别程序,我还没来的及看呢?- Just downloaded the fingerprint recognizer, I have not come
and look?
- 2022-05-31 08:55:55下载
- 积分:1
-
EHMM人脸识别实例,OPENCV,MFC
基于EHMM的人脸识别程序实例。可执行,无错误。环境:VC++6.0,OPENCV1.0。附带ORL、FERET人脸图像库人脸图像,测试结果正确率接近100%。本科毕业设计答辩通过。
- 2023-05-03 05:25:06下载
- 积分:1
-
卡尔曼滤波对自由目标的应用
利用卡尔曼滤波对自由落体的目标小球进行跟踪,其中有些视频演示跟踪过程.-The use of Kalman filter to the objective of free-falling ball track, some of which track the process of video presentations.
- 2022-07-12 03:05:29下载
- 积分:1
-
Levenshtein_Edit_Distance_Algorithm
介绍
- 2022-07-24 08:53:07下载
- 积分:1
-
数据结构-算法-C语言-Demo
#ifndef _BINARY_TREE_H_INCLUDED#define _BINARY_TREE_H_INCLUDED#include #include templatestruct Bintree_node {T element;Bintree_node* lchild;Bintree_node* rchild;explicit Bintree_node(const T& elem=T(), Bintree_node* lchd=0, Bintree_node* rchd=0): element(elem), lchild(lchd), rchild(rchd) {}};templateclass Binary_tree {public:typedef Bintree_node* PBtn;Binary_tree();virtual ~Binary_tree();void clear();int depth() const;int size() const;virtual PBtn find(const T& elem) const=0;virtual void insert(const T& elem)=0;virtual void erase(const T& elem)=0;virtual void print(std::ostream& output) const=0;void print_tree(std::ostream& output) const;protected:
- 2022-01-29 04:39:50下载
- 积分:1
-
a matrix multiplication code in C Language
一个矩阵相乘的c语言代码-a matrix multiplication code in C Language
- 2022-04-19 17:23:06下载
- 积分:1
-
MIMIO雷达相位编码信号产生与匹配滤波、DBF、MTD
对于发射接收都为8个通道的MIMO雷达系统,在一定的背景下,目标距离5000米,运动速度100m/s,运用相位编码信号,仿真发射信号、接收信号,进行DBF处理,匹配滤波提取信息后,MTD处理
- 2022-03-07 05:39:53下载
- 积分:1