-
Algorithm design in the 0
算法设计中的0-1背包问题,递归的应用
算法设计中的0-1背包问题,递归的应用-Algorithm design in the 0-1 knapsack problem, recursive application of algorithm design in the 0-1 knapsack problem, recursive application of
- 2022-02-26 18:53:13下载
- 积分:1
-
LMI的可行性程序
用LMI工具箱来求解LMI的可行性问题,一个简单的鲁棒控制问题的仿真,以及控制器设计的问题。
- 2022-05-28 17:05:03下载
- 积分:1
-
肤色识别代码
检查图片中属于人类肤色的区域。输入为yuv格式图片,目前可以识别黄种人的肤色区域。主要用到椭圆模型的色彩识别算法,在yuv色彩空间中,将近似黄种人肤色的色彩,用uv二维空间中的椭圆区域来表示。
- 2022-08-31 12:15:03下载
- 积分:1
-
IFS Fractali
分形 IFS 分形建筑 generationsIFS 通过生成 fuctiilor。一代人,和图像的示例包含生成的程序窗口。
- 2022-08-03 08:19:28下载
- 积分:1
-
PCA人脸识别
基于主成分分析,的人脸识别,加上ABOOST分类器检测人脸,效果不错,欢迎下载。当然PCA是比较经典的算法,这里给出了完整的展示,对初学者或用于项目的人非常有用。
- 2022-03-05 23:44:57下载
- 积分: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
-
kalman最优估计器
卡拉曼最优估计器算法吗,标量kalman最优估计器MATLAB实例参考《数字滤波与卡尔曼滤波》S.M.Bozic 1979实例编写,程序思路比较清晰,便于初学者理解kalman滤波的原理
- 2022-05-17 13:44:36下载
- 积分:1
-
小波变换,去噪,重构的程序
资源描述本程序为小波分解,去噪,和重构的MFC程序,可以看见每一层的分解情况
- 2022-10-06 23:05:02下载
- 积分:1
-
2kDPDS算法源码
2k近邻数据流聚类算法,采用vc++实现
The summary of what you will find in each of the files that
make up your 2kDPDS application.
2kDPDS.dsp
This file (the project file) contains information at the project level and
is used to build a single project or subproject. Other users can share the
project (.dsp) file, but they should export the makefiles locally.
2kDPDS.h
This is the main header file for the application. It includes other
- 2022-05-15 07:28:24下载
- 积分:1
-
无迹卡尔曼滤波
基于无迹卡尔曼滤波的室内移动系统的性能强化,比较经典。-Unscented Kalman filter-based indoor mobile systems to strengthen performance, compare the classic.
- 2022-08-21 21:53:20下载
- 积分:1