-
ka-e-man-lv-bo
应用matlab编程实现基于卡尔曼滤波的目标运动 小球的实时轨迹跟踪(using matlab : using kalman to track the target running ball in time)
- 2013-09-03 16:40:26下载
- 积分:1
-
0913
电机控制程序,用来提取电机的定子电流转子槽谐波,来计算电机转速和温度(The motor control program, used to extract the motor stator current harmonic rotor slot, to calculate the motor speed and temperature)
- 2011-12-26 10:14:33下载
- 积分:1
-
[IEEE]SystemC.std.1666-2011
SystemC官方最新资料,出自IEEE计算机协会,由设计自动化委员会资助。(SystemC latest official information the IEEE Computer Society, funded by the Design Automation Committee.)
- 2015-03-26 15:09:02下载
- 积分:1
-
gatbx-toolbox
说明: matlab遗传算法工具箱,解决遗传算法中函数不识别的现象(matlab genetic algorithm toolbox to solve the genetic algorithm function does not recognize the phenomenon of)
- 2008-11-25 11:24:35下载
- 积分:1
-
harris_ncc
harris角点检测,并对检测的角点用NCC进行匹配(harris corner detection, and detection of the corner points are matched with NCC)
- 2013-07-20 16:02:39下载
- 积分:1
-
handwritten-digits_recognition-
一个基于神经网络的手写体数字识别的matlab程序,可以自行进行神经网络训练并识别给出相应的结果(A neural network-based handwritten numeral recognition matlab program, the neural network can be trained to identify themselves and give the corresponding results)
- 2013-12-02 07:06:43下载
- 积分:1
-
SLF
This is a load flow environment for Matlab/Simulink.
It is called SLF and was writen during a diploma thesis at
Vestas, 舝hus, in the Power Plant department.
- 2015-01-13 11:01:30下载
- 积分:1
-
NLMS
LMS及NLMS的源程序,MATLAB实现 打开既可以使用(NLMS and LMS . It isproformed by the app Matlab.)
- 2019-05-19 19:21:32下载
- 积分:1
-
li9_23
clear all
I=imread( lena.bmp )
figure imshow(I)
I2=imrotate(I,-4, bilinear ) 逆时针旋转4度
figure imshow(I2)
I3=fliplr(I) 垂直镜像
figure imshow(I3)
I4=imresize(I,0.5, bilinear ) 缩小为原图的1/2
figure imshow(I4)
A=double(I) 转换为double类型
计算7个不变矩
[nc,nr]=size(A)
[x,y]=meshgrid(1:nr,1:nc) 得到网格
x=x(:)
y=y(:)
A=A(:)
m.m00=sum(A)
if m.m00==0
m.m00=eps
end
m.m10=sum(x.*A)
m.m01=sum(y.*A)
计算均值
xmean=m.m10/m.m00
ymean=m.m01/m.m00
计算中心矩(li9_23.rar
cm.cm00=m.m00
cm.cm02=(sum((y-ymean).^2.*A))/(m.m00^2)
cm.cm03=(sum((y-ymean).^3.*A))/(m.m00^2.5)
cm.cm11=(sum((x-xmean).*(y-ymean).*A))/(m.m00^2)
cm.cm12=(sum((x-xmean).*(y-ymean).^2.*A))/(m.m00^2.5)
cm.cm20=(sum((x-xmean).^2.*A))/(m.m00^2)
cm.cm21=(sum((x-xmean).^2.*(y-ymean).*A))/(m.m00^2.5)
cm.cm30=(sum((x-xmean).^3.*A))/(m.m00^2.5)
im(1)=cm.cm20+cm.cm02
im(2)=(cm.cm20-cm.cm02)^2+4*cm.cm11^2
im(3)=(cm.cm30-3*cm.cm12)^2+(3*cm.cm21-cm.cm03)^2
im(4)=(cm.cm30+cm.cm12)^2+(cm.cm21+cm.cm03)^2
im(5)=(cm.cm30-3*cm.cm12)*(cm.cm30+cm.cm12)...
*((cm.cm30+cm.cm12)^2-3*(cm.cm21+cm.cm03)^2)...
+(3*cm.cm21-cm.cm03)*(cm.cm21+cm.cm03)...
+(3*(cm.cm30+cm.cm12)^2-(cm.cm21+cm.cm03)^2)
im(6)=(cm.cm20-cm.cm02)*((cm.cm30+cm.cm12)^2-(cm.cm21+cm.cm03)^2)...
+4*cm.cm11*(cm.cm30+cm.cm12)*(cm.cm21+cm.cm03)
im(7)=(3*cm.cm21-cm.cm03)*(cm.cm30+cm.cm12)...
*((cm.cm30+cm.cm12)^2-3*(cm.cm21+cm.cm03)^2)...
+(3*cm.cm12-cm.cm30)*(cm.cm21+cm.cm03)...
*()
- 2010-10-17 21:53:14下载
- 积分:1
-
eee
一种目前最流行的人脸识别算法程序,利用的是特征脸识别算法,程序简单,每行都有注释(A face recognition is currently the most popular algorithm procedures, take advantage of the features of the face recognition algorithm, the procedure is simple, there are notes on each line)
- 2009-04-23 11:26:09下载
- 积分:1