-
仿生模式识别 目标跟踪
用仿生模式识别来训练目标,在视频序列中跟踪目标
function [sausage, num] = hypersausage_construct(P)
%按照样本给定的顺序去求解超香肠神经元
[~, W] = size(P);%W是训练样例的个数
sausage = [];
for i = 2:W
temp = power_two(P(:, i - 1), P(:, i));%构建第i-1个神经元 //temp是一个行向量
%temp = power_three(P(:, i - 2), P(:, i-1),P(:,i));
sausage = [sausage temp];
end
sausage = [sausage P(:, end)];
num = (size(sausage, 2) - 1) / (W - 1);
- 2023-08-13 14:40:03下载
- 积分:1
-
计算飞船相对测站的位置矢量单位矢量在赤道坐标系中的三个分量...
计算飞船相对测站的位置矢量单位矢量在赤道坐标系中的三个分量-Calculation of the spacecraft relative position vector of the station unit vector in the equatorial coordinate system of the three subscales
- 2023-03-12 12:35:03下载
- 积分:1
-
the code is "commonly used computer numerical algorithms and procedures C v...
该代码是《计算机常用数值算法与程序C版》一书中支持矩阵特征值和特征向量的计算代码,这些程序已在c6.0虚拟环境下通过。注意VC 6.0的安装路径,特别是包括目录(文件夹)路径,否则会出现编译头文件找不到的错误和编译器不正常。
- 2022-02-04 23:54:03下载
- 积分:1
-
算24点,若有解则输出每一步计算步骤,若无解则返回“No answer!”...
算24点,若有解则输出每一步计算步骤,若无解则返回“No answer!”-Count 24 points, if so, what solutions are output every step of the calculation steps, if there are no solution is returned
- 2022-08-17 18:34:01下载
- 积分:1
-
三次样条插值方程
三次样条插值计算方程组-cubic spline interpolation equations
- 2023-06-03 23:00:02下载
- 积分:1
-
C实现RS编码
用C实现RS码纠错仿真
RS码的编码程序 编码效率高,且经实际验证符合RS纠错码的要求-RS code using C realize simulation RS
error correction code encoding procedure coding efficient and practical
to verify compliance with the requirements of RS error-correcting codes
- 2023-05-05 14:10:03下载
- 积分:1
-
This code can generate a series of random numbers, and then the number of these...
此代码可以生成一系列随机数,然后对这些随机数进行快速排序。-This code can generate a series of random numbers, and then the number of these random quick sort.
- 2022-03-20 18:48:10下载
- 积分:1
-
ACM题目,实现两个大数的相乘,题目详见http://acm.zju.edu.cn/show_problem.php?pid=1272...
ACM题目,实现两个大数的相乘,题目详见http://acm.zju.edu.cn/show_problem.php?pid=1272-ACM topic, the two realize the multiplication of large numbers, see the topic http://acm.zju.edu.cn/show_problem.php?pid=1272
- 2022-04-27 15:57:13下载
- 积分:1
-
卫星轨道可视化程序
Savi 公司是写以便卫星星座分析与可视化的软件。这个软件是可利用的自由和公开的。我们需要使用任何图像由本软件学分,savi 公司和几何中心。Savi 公司网页用户手册是在手册 / 目录。
- 2023-07-13 22:10:03下载
- 积分:1
-
基于RFID 技术导盲机器人室内路径规划的研究
资源描述摘要: 为了辅助视力障碍者在室内行走及寻物,以自主设计的导盲机器人为实际应用背景,提出一种适用于室内导航的
算法. 该路径规划算法利用射频识别( radio frequency identification,RFID) 系统,将基于RFID 系统的三角定位思想与A* 搜
索算法相结合,在提高搜索效率的同时保证了规划路径的可行性. 通过在平面障碍物环境下实验,验证了该算法的可行性.
关键词: 路径规划; 导盲机器人; 射频识别
- 2022-11-09 07:35:03下载
- 积分:1