-
opencv实现的retinex图像增强
- 2022-01-28 11:03:08下载
- 积分:1
-
基于BP神经网络的RFID室内定位算法研究
资源描述:针对室内物体或者人员使用主动式射频识别(RFID)技术问题,设计了适用于室内环境的定位算法。传统的RFID室
内定位算法由于室内环境复杂多变,路径损耗系数很难准确估计,定位精度不高。为解决上述问题,提出一种采用BP神经
网络的RFID室内定位算法,算法引入参考标签辅助定位,利用BP神经网络建立场强信号转化模型。在模型中输入接收信
号强度值,输出路径损耗系数,网络模型提高了路径损耗系数的准确性,再利用距离一损耗模型实现精确定位,从而减小定位
误差。与传统的RFID定位算法比较,仿真和实验结果表明,改进算法的定位精度有显著的提高,可用于仓库、监狱、超市等
室内环境。
- 2022-09-18 04:45:03下载
- 积分: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
-
leetcode部分算法源码
本人编写的leetcode部分算法源码,为了下载matlab程序,上传了。。。。。。。。。。。。。。。
- 2022-01-31 09:42:08下载
- 积分:1
-
用vc++平台开发的双三次样条插值函数,具有很高的精度,能够完成对面上的点的插值...
用vc++平台开发的双三次样条插值函数,具有很高的精度,能够完成对面上的点的插值-Using vc platform for the development of bi-cubic spline interpolation function, has high accuracy, can be completed on the surface of the interpolation points
- 2022-05-07 13:45:08下载
- 积分:1
-
Perseptorn
实验室工作“神经计算网络”。他们实现了感知器。
- 2022-02-21 21:16:53下载
- 积分:1
-
牛顿
牛顿-拉格朗日插值法C++源代码,最新修改的通码,网友可以-Newton-Lagrange interpolation C source code, the latest revision of immigration code, net surfers can s
- 2022-03-02 14:15:10下载
- 积分:1
-
可逆嵌入式零树小波编码代码,主要是小波变换时使用的可逆变换。...
可逆嵌入式零树小波编码代码,主要是小波变换时使用的可逆变换。-reversible EZW coding code, wavelet transform is mainly used for the reversible transformation.
- 2023-03-12 23:20:03下载
- 积分:1
-
立体影像对的光束法严密解求外方位元素:已知控制点的左右影像像点坐标和物方空间坐标,解求左右影像的外方位元素。...
立体影像对的光束法严密解求外方位元素:已知控制点的左右影像像点坐标和物方空间坐标,解求左右影像的外方位元素。-three-dimensional images of the bundle closely to Solve exterior orientation elements : known control points around the image pixel coordinates and objects to space coordinates solution for image around the exterior orientation elements.
- 2022-01-26 01:42:32下载
- 积分:1
-
high matrix operation code
高数矩阵运算代码-high matrix operation code
- 2022-06-20 05:10:58下载
- 积分:1