-
BackgroundRemovalforColorImagesBasedonColorCompone
说明: 基于彩色成分差异的彩色图像背景去除算法研究(Background Removal for Color Images Based on Color Components Difference0)
- 2010-03-26 17:59:34下载
- 积分:1
-
131223
十几篇英文文献,关于PHD滤波算法和SLAM问题的。在网上不容易下到,拿来和大家分享下。希望能有用处。(More than a dozen English literature, about the PHD filter algorithm and SLAM problem. Next to the Internet is not easy, and we used to share with you. I hope to have useful.)
- 2013-12-23 10:38:25下载
- 积分:1
-
lyapunovindex
说明: 混沌计算程序源文件——包括计算Lyapunov指数的5种方法:C-C算法,最小数据量算法,G-P算法,关联维数法,互信息量法。(the original programs to calculate chaos in order to count the Lyapunov index out. Including 5 such methods: c-c method, minimum data method, G-P, mutual information method and correlation dimentional method.)
- 2009-08-02 00:01:52下载
- 积分:1
-
6
MATLAB语言常用算法程序集。第6章 矩阵特征值计算(MATLAB language commonly used algorithm for assembly. Chapter 6 matrix eigenvalue calculation)
- 2013-11-19 11:14:31下载
- 积分:1
-
91332001k-means(matlab)
kmeans matlab .
- 2009-12-29 00:39:17下载
- 积分:1
-
pitch_contour_autocorrelation
this program estimated the pitch contour of a given speech signal.
- 2013-11-09 22:35:29下载
- 积分:1
-
表面肌电信号时域频域分析
表面肌电信号常见时域频域MATLAB程序(Surface realm signal common time domain frequency domain MATLAB program)
- 2020-11-26 13:59:31下载
- 积分:1
-
12脉波整流电路MATLAB-Simulink仿真及谐波分析
12脉波整流电路MATLAB Simulink仿真及谐波分析(MATLAB Simulink simulation and harmonic analysis of 12 pulse rectifier circuit)
- 2018-10-14 11:23:33下载
- 积分:1
-
MATLAB
MATLAB在有限差分法中的应用 (matlab )
- 2012-04-21 16:04:49下载
- 积分:1
-
3x3-neighbor-pixel
Description
All the filters have needed neighbor data the current pixel in the image,here this function(res_window=cover_window(how many neighbor value for row ,how many neighbor value for column ,input image) produce the result( res_window(row,col,total size))
input
inp_img=2d data(row * col)
w=cover size
w=[3 3] = 3x3 cover pixel generation
output
o_img=result 3d
o_img(w(1),w(2),r*col)
if
inp_img=[1 2 3 4 5 6 ]
w=[3 3]
Soloution
it will construct new image
new_img=[0 0 0 0 0 0 1 2 3 0 0 4 5 6 0 0 0 0 0 0]
result
o_img(:,:,1)=[0 0 0 0 1 2 0 4 5]
o_img(:,:,2)=[0 0 0 1 2 3 4 5 6]
finally
o_img(1:3,1:3,6)
example
a=imread( pears.png )
b=rgb2gray(a)
c=cover_window( b,[3 3]) 3x3 window construction
- 2014-10-24 17:14:14下载
- 积分:1