搜索资源列表
粒子滤波matlab程序
- 第一篇:Particle filter example, adapted from Gordon, Salmond, and Smith paper. 第二篇:Particle filter example.Track a body falling through the atmosphere.This system is taken from [Jul00], which was based on [Ath68]. 总共5篇,有EKF AUF等滤波器
dancinglink
- This a program to implement the so-called \"dancing link\" which is introduced in Knuth s paper. This is really a super acrobatic and I am sure that not many programmers can understand the algorithms. -This is a program to implement the so-c
AHybidGeneticAgorithmtoSolveTS
- 求解TSP和MTSP的混合遗传算法_英文_,Abstract:M any app licat ions are invo lved w ith mult ip le salesmen each of w hom visits a subgroup cit ies and returns the same start ing city. The to tal length of all subtours is required to be m ini2 mum. Th is is called
ObtainMethodofQuaternionMatrixOrthogonalEigenvecto
- 针对四元数矩阵正交特征矢量系求解困难的缺点, 本文提出一种获取四元数矩阵正交特征矢量集等效、便捷的方法, 其基本思路为: 首先, 构造四元数矩阵定义于复数域的导出阵, 并利用该导出阵特征矢量空间的一种特殊的等价空间间接获取 相应特征值所对应的特征矢量. 然后, 将复数矢量转换为四元数矢量, 按如此方式获取的对应所有特征值的非零特征矢量则构 成原始四元数矩阵的正交特征矢量系-For Quaternion orthogonal feature vector lines to solve
TSPandMTSP
- MTSP 问题其实与单 旅行商问题(Traveling Salesperson Problem ,简称TSP) 相似,但是由于添加了任何城市只要被某一旅行商访问到即可这个附加条 件,因而增加了问题复杂度。在以前使用遗传算法(GA) 研究解决MTSP 问题时,通常采用标准的TSP 染色体和处理方法。-M any app licat ions are invo lved w ith mult ip le salesmen each of w hom visits a subgroup c
dwt2
- 本文提出了一种基于独立分量分析的音频数字水印方法。嵌入水印时,对原始音频文件进行一级小波分解,在分解 得到的逼近分量中利用随机混合方法嵌入水印后进行小波逆变换形成嵌入水印的音频文件。仿真实验结果表明这种方 法的强鲁棒性和可行性。-Abstract:Audio p roduction is one of the important digital multimedias, which transmit becomes more and more convenient. To p rev
AlgoritmRabina_Karpa
- The Rabin–Karp algorithm is a string searching algorithm created by Michael O. Rabin and Richard M. Karp in 1987 that uses hashing to find any one of a set of pattern strings in a text. For text of length n and p patterns of combined length m, its av
SynchronizationForAllDigitalreceivers
- 全数字接收的同步技术,包括内插器、定时检测器、数字振荡器等部分,是一篇较早比较有参考价值的论文,在学习全数字接收机同步方面重要。作者gardner-Synchronization of all-digital receivers, including interpolator, timing detector, digital oscillator and some other, is an earlier paper are more useful in learning the import
mxTV
- 全变差图像处理Matlab程序,for the paper: "Algorithms and Software for Total Variation Image Reconstruction via First-Order Methods, Numerical Algorithms"-Software for Total Variation Image Reconstruction (for Matlab Version 7.5 or later) "mxTV" is a software
ssim
- This is an implementation of the algorithm for calculating the Structural SIMilarity (SSIM) index between two images. Please refer to the following paper: Z. Wang, A. C. Bovik, H. R. Sheikh, and E. P. Simoncelli, "Image quality assess
Manhattan
- 在 VLSI 设计中,多点互连是物理设计阶段的关键问题之一,而互连的点数等于 2 或大于 2 分别对应于 Manhattan 空间上有障碍时的最短路径问题和最小 Steiner 树问题,显然前者是后者的基础.连接图是研究最短路径 问题的有效工具,已有的典型连接图包括基于轨迹的GC 和GT 以及基于自由区的GF 和GG.工作包括3个方面:设计并分析了在各种连接图上实现动态的点对之间的最短路径查询算法 分析了在各个连接图上构造 3-Steiner 树的算 法,对于已有的 GC 上的 3-
HOG
- Image descr iptor based on Histogram of Orientated Gradients for gray-level images. This code was developed for the work: O. Ludwig, D. Delgado, V. Goncalves, and U. Nunes, Trainable Classifier-Fusion Schemes: An Application To Pedestrian De
MATLAB-environment-voice-recognition
- 介绍了一种基于 MA T L A B的多个特定人连接词语音识别的方法,并提出了在进行端点检测时,引入平均的概念能进一 步提高识别率。 此设计是以 L P C C系数、 D T W 算法为核心的基于图形界面的设计。 通过大量的实验测试 ,表明该方法基本达 到屏蔽外界环境的影响 , 具有非常高的精度识别-: In this paper based on a number of specific persons MA TLAB conjunctions speech recognition
Shortest-Path-Based-on-Delay-PCNN
- 本文在脉冲耦合神经网络(PCNN2Pulse Coupled Neural Network) 的基础上,提出了时延脉冲耦合神经网络 (DPCNN2Delay PCNN) ,并将其成功地用于求解最短路径,同时给出了基于DPCNN 的最短路径求解算法. Caulfield 与 Kinser 提出了用PCNN 求解迷宫问题的方法,虽然他们的方法也可用于求解最短路径,但所需神经元的数量巨大,而本 文的方法所需的神经元的数量远小于他们的方法. 同时,本文的方法充分利用了DPCNN 脉冲快速并
c-P-P-algorithm-procedures
- 程序开始运行,要求用户首先输入两个大数。 然后进行菜单选择,进行相应的大数运算。 分析说明:由于大数的范围太大,不能直接定义为int或者float等, 所以我们的想法就是定义成字符串类型, 输入的数字一位一位地存入字符数组里面。 然后在运算的时候也是一位一位地运算。 这个过程就得从最基本的数学运算法则做起,不乏多种判断。 涉及到数组和指针的应用。最难的就是判断情 况还有应用数组和指针过程中出现的多种未可预知的错误, 还得通过逐步调试慢慢找出。我们先从加减
grady2011segmentation
- The random walker algorithm was introduced in the paper: Leo Grady and Gareth Funka-Lea, "Multi-Label Image Segmentation for Medical Applications Based on Graph-Theoretic Electrical Potentials", in Proceedings of the 8th ECCV04, Workshop on Compute
tp2-multicouche
- Backpropagation with momentum * by Andres Perez-Uribe * References : - G. Hinton, "How neural networks learn from experience", Scientific American, sep 1992. - P. Werbos, "The Roots of Backpropagation: From ordered derivatives
HOG
- Image descr iptor based on Histogram of Orientated Gradients for gray-level images. This code %was developed for the work: O. Ludwig, D. Delgado, V. Goncalves, and U. Nunes, 'Trainable %Classifier-Fusion Schemes: An Application To Pedestrian Detectio
efficient_belief_prop.tar
- a C++ implementation of the stereo and image restoration algorithms described in the paper: Efficient Belief Propagation for Early Vision Pedro F. Felzenszwalb and Daniel P. Huttenlocher International Journal of Computer Vision, Vol. 70, No
A-Ball-Tracking-Application
- The application uses the approach introduced in paper Covariance Tracking using Model Update Based on Means on Riemannian Manifolds , F.Porikli, O.Tuzel, P.Meer. The tracking is based on: 1) initializing the target region 2) constructing the