-
222223
酒店门锁控制系统,制卡,退房退卡等操作,客房关系系统(Hotel door lock control systems, card, check out withdrawal card operation)
- 2014-03-27 18:00:48下载
- 积分:1
-
ACTION_LNPC2019
说明: 使小车走圆并改变坐标系传回位置,通过串口读取小车位置,沿坐标轴速度,角速度(Round the car and change the coordinate system to return position)
- 2020-06-17 19:20:02下载
- 积分:1
-
smooth
c#编写的图像平滑处理,源码比较全,可以成功编译,希望对大家有帮助。(c# prepared by the image smoothing, source code comparison, can be successfully compiled, we want to help.)
- 2013-08-19 20:44:15下载
- 积分:1
-
离心式压气机二维仿真源代码
该模型是针对由进口支板、预旋叶片、离心叶轮、径向扩压器、轴向整流器及径向回流器组成的离心式压气机计算该压气机性能的模型,该模型对各个组成部分均进行了相关的假设和简化,特别是离心叶轮的出口采用径向平衡方程,通过迭代求解获得出口界面的参数分布,这对下游与之匹配的径向扩压器的损失求解有着关键作用,该模型能够比较准确的模拟8km一下的该离心压气机的特性。
- 2022-02-26 00:36:20下载
- 积分:1
-
无线传感器网络
1.拿到板子后,肯定是要测试下通信功能,默认代码里面有程序的。
只要上电就可以测试2个板子相互发送数据测试。视频在网页里面就可以看到。
2.学习从 1 ZigBee简介和学习方法.pdf 开始 和 2.Zigbee开发平台的构建.pdf
3.认真学习开发 从 zigbee开发板代码及其教程1.基础篇-CC2530实验代码教程1、CC2530 流水灯实验 开始
每个代码都有相应的PDF讲解。
4.下载程序时,要复位仿真器。
- 2022-06-16 21:51:21下载
- 积分:1
-
test1
生产者消费者问题-经典进程同步问题——生产者消费者问题及其同步方案;(produce&comsumer produce&comsumerproduce&comsumerproduce&comsumer)
- 2018-05-03 19:36:23下载
- 积分:1
-
matrixmulti
在visual studio的平台上开发CUDA程序实现并行加速计算矩阵的乘积,同时比较与串行计算的差异(Differences in the development of procedures to achieve parallel CUDA accelerated computing matrices in visual studio platform, but compared with the serial computing)
- 2020-12-11 21:49:17下载
- 积分:1
-
DetectionofTonguesCrackBasedonAdaptiveThreshold
摘 要:舌象中的裂纹是中医舌诊中的重要内容。由于拍摄条件的不同,舌象质量有较大差异,传统的阈值选取方法并不
适用。文中提出一种舌象裂纹检测的自适应阈值选择方法。该方法利用舌象的L 3 a 3 b 色彩特征及区域的分裂- 合并,
对舌象进行区域分割,自适应地选取舌中部区域的色彩值作为阈值,对整个舌象进行裂纹提取。经验证,本方案对不同的
舌象能较好地提取出裂纹,实现舌象裂纹诊断的客观化。(Tongue’ s crack is a very important part of herbalist doctor diagnosis. For the different screen conditions , there are many differ2
ences on the tongue’ s quality. It is not effective to use the t raditional threshold ext raction algorithm. In order to solve this problem , pro2
pose a new adaptive threshold algorithm. Present the segmentation of the image of tongue by using the feature on tongue in the L 3 a 3
b color space and the split- combining algorithm. Then use the threshold , which is the color value ext racted automatically in the middle
of the tongue , to detect the crack of the whole tongue. The experiments show that this approach is able to distill the crack effectively to
different tongue images , and achieve the objectivity of the diagnosis based on the tongue’ s crack.)
- 2020-08-27 19:58:13下载
- 积分:1
-
CRC
循环码的编码与译码器(支持一位的纠错)
编码(n,k可调)
测试用例1:
input:n=7 k=3 g=11101 m=101
output:1010011
input:n=7 k=3 g=11101 m=010
output:0100111
测试用例2:
input:n=7 k=4 g=1011 m=1101
output:1101001
input:n=7 k=4 g=1011 m=1010
output:1010011
译码(可译一位错)
测试用例1:
input:n=7 k=3 g=11101 r=0100110
已纠错 output:0100111
input:n=7 k=3 g=11101 r=1110011
已纠错 output:1010011
测试用例2:
input:n=7 k=4 g=1011 r=1110011
已纠错 output:1010011
input:n=7 k=4 g=1011 r=1111001
已纠错 output:1101001(Encoding and decoding of cyclic codes (to support an error-correction)
Coding (n, k adjustable)
Test Case 1:
input: n = 7 k = 3 g = 11 101 m = 101
output: 1,010,011
input: n = 7 k = 3 g = 11 101 m = 010
output: 0,100,111
Test Case 2:
input: n = 7 k = 4 g = 1011 m = 1101
output: 1101001
input: n = 7 k = 4 g = 1011 m = 1010
output: 1,010,011
Decoding (translation of a wrong)
Test Case 1:
input: n = 7 k = 3 g, = 11 101 r = 0.10011 million
Error-correcting output,: 0,100,111
input: n = 7 k = 3 g, = 11 101 r = 1,110,011
Error-correcting output,: 1,010,011
Test Case 2:
input: n = 7 k = 4 g, = 1011 r = 1,110,011
Error-correcting output,: 1,010,011
input: n = 7 k = 4 g, = 1011 r = 1,111,001
Error-correcting output,: 1,101,001)
- 2012-03-04 16:02:48下载
- 积分:1
-
imgsuanfa
用matlab编写的图像复原程序,好用,大家可以试一下-Prepared to use matlab image restoration procedures, easy to use, everyone can try(Prepared to use matlab image restoration procedures, easy to use, everyone can try)
- 2009-06-06 14:28:22下载
- 积分:1