-
0999
卡尔曼滤波是一种数据处理方法,它是一种线性最小方差无偏估计准则,基于系统
状态估计和当前观测,通过引入状态空间而获得的新的状态估计.本篇论文陈述了卡尔曼滤
波的基本思路和算法;并通过仿真,显示卡尔曼滤波的功能,以及如何用它来跟踪方向确定、速度恒定的飞行器。 (Kalman filter is a data processing method, which is a linear minimum variance unbiased estimation criteria, based on system state estimation and the current observations, obtained by introducing the state space of the new state estimate of the Kalman filter thesis statement the basic ideas and algorithms and through simulation, shows Kalman filtering functions, and how to use it to keep track of the direction determined constant speed aircraft.)
- 2013-09-06 10:21:27下载
- 积分:1
-
pp
说明: 利用vc++实现avi文件图像截取,avi图像即视屏图像(Use vc++ Achieve avi file image capture, avi video image that is, images)
- 2008-12-17 23:26:31下载
- 积分:1
-
chenggongchengxu
rgb to HSV,很有用,调试成功,可以应用(rgb to HSV,#include "stdafx.h"
#include <iostream.h>
void main(float R, float G, float B, float& H, float& S, float&V)
{
// r,g,b values are from 0 to 1
// h = [0,360], s = [0,1], v = [0,1]
// if s == 0, then h =-1 (undefined)
float min, max, delta,tmp
tmp = R>G?G:R
min = tmp>B?B:tmp
tmp = R>G?R:G
max = tmp>B?tmp:B
V = max // v
delta = max- min
if( max != 0 )
S = delta/max // s
else
{
// r = g = b = 0 // s = 0, v is undefined
S = 0
H = 0
return
}
if (delta == 0){
H = 0
return
}
else if(R == max){
if (G >= B)
H = (G- B)/delta // between yellow & magenta
else
H = (G- B)/delta+ 6
}
else if( G == max )
H = 2+ ( B- R )/delta // between cyan & yellow
else if (B == ma)
- 2011-12-02 10:09:24下载
- 积分:1
-
gaues_
高斯计算程序,高斯计算程序,高斯计算程序,高斯计算程序,高斯计算程序,高斯计算程序,(Gaussian calculation program, Gaussian calculation program, Gaussian calculation program, Gaussian calculation program, Gaussian calculation program, Gaussian calculation program,)
- 2013-04-12 09:47:28下载
- 积分:1
-
inverse-normal-cumulative
用于图像检测的正态分布计算的c代码实现,现在将这个函数写在头文件中了(Normally distributed computing for image detection of the c code, this function will now be written in the header file in the)
- 2011-11-10 10:41:56下载
- 积分:1
-
secaizhuanyi
运用openCV编写的C++图像色彩转移程序,原理是先转化到Lab图像,再保持L不变调整图像的a、b分量的均值跟方差。(Using openCV prepared C++ image color transfer process, the principle is first converted to Lab image, and then adjust the image to keep L constant a, b, with the mean variance component.)
- 2013-09-15 16:40:26下载
- 积分:1
-
PNG(96)
96个蛮实用的PNG格式图标 仅供编程或图像处理使用。(96 pretty practical PNG format icon super practical!)
- 2012-10-11 09:15:23下载
- 积分:1
-
MedianValueFilter2006-10-24
Visual C++MATLAB图像处理与识别实用案例精选之 图像中值滤波 算法的源程序,含标准测试图片(Visual C MATLAB image processing and recognition practical case Featured's image filtering operator Law of the source, including standard tests Photo)
- 2006-10-24 16:27:59下载
- 积分:1
-
GrayShow
visual c++ 工具 c语言 实现的灰度共生矩阵。(visual c++ tool c language GLCM.)
- 2013-06-02 01:34:37下载
- 积分:1
-
gauss-noise
高斯有色噪声,有色噪声的谱估计及其在雷达中的应用(gauss noise)
- 2012-11-21 19:17:31下载
- 积分:1