-
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
-
xianxingguihua
掌握用Matlab优化工具箱和LINGO解线性规划的方法;(Mastered the optimization toolbox of Matlab and LINGO solution of linear programming methods )
- 2013-03-19 12:57:56下载
- 积分:1
-
My_PF
标准的粒子滤波器matlab程序,附有详细注释,可以帮助有效掌握粒子滤波算法。希望大家多提建议(Standard particle filter matlab program, with detailed notes, can help grasp the particle filter algorithm. I hope you more suggestions)
- 2013-03-27 00:25:54下载
- 积分:1
-
matlab1
matlab关于有限元分析的书籍。以及仿真实例及分析(matlab books on finite element analysis . Analysis and simulation examples and
)
- 2011-12-01 12:14:07下载
- 积分:1
-
algorithm_k
It is a small part of code that used for clustering approach
- 2015-03-18 15:48:22下载
- 积分:1
-
prueba
ZF MMSE QPSK 16-QAM mimo 2x2 4x4 v-blast
- 2010-06-13 00:20:31下载
- 积分:1
-
使用MATLAB6.5实现的自适应学习速率反向传播网络-bpexamples
使用MATLAB6.5实现的自适应学习速率反向传播网络(Matlab6.5 achieved using adaptive learning rate back-propagation network)
- 2005-02-18 15:20:26下载
- 积分:1
-
Fang_Taylor_Chan
用matlab实现小车的精准定位算法的研究。(Realize the precise localization algorithm of the car
)
- 2012-03-21 15:35:21下载
- 积分:1
-
Circuit-Analysis-II-with-MATLAB-applications
Circuit Analysis II with MATLAB applications
- 2013-10-25 22:48:18下载
- 积分:1
-
kalman_last
对最基础卡尔曼滤波器的仿真,对于初学者了解卡尔曼滤波器工作原理有一定参考价值(Simulation on the most basic kalman filter, for beginners to understand working principle of the kalman filter has a certain reference value)
- 2014-01-08 18:13:47下载
- 积分:1