
Matlab
fanbird2008
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Matlab Intro - Convolution
A = [ 0 0 0 0 0 0 0 0;0 0 0 0 0 0 0 0;0 0 0 1 1 0 0 0;0 0 0 1 1 0 0 0;0 0 0 1 1 0 0 0;0 0 0 1 1 0 0 0;0 0 0 0 0 0 0 0;0 0 0 0 0 0 0 0];k=[1/9 1/9 1/9;1/9 1/9 1/9;1/9 1/9 1/9];转载 2015-03-13 15:52:26 · 491 阅读 · 0 评论 -
Kalman Filter - Kalman滤波器从原理到实现
http://blog.youkuaiyun.com/xiahouzuoxin/article/details/39582483转载请注明出处:http://xiahouzuoxin.github.io/notesKalman滤波器的历史渊源We are like dwarfs on the shoulders of giants, by whose grace we see转载 2015-08-03 14:10:02 · 2291 阅读 · 0 评论 -
Matlab Intro - Image Structure
A=imread('d:\Pict\tiff\spine.tif');se = strel('square', 5);B=imerode(A, se);C=imdilate(A, se);figure(1), imshow(B), title('Erode');figure(2), imshow(C), title('Dilate');转载 2015-03-13 17:59:56 · 421 阅读 · 0 评论 -
Matlab Intro - Image Media Filter
Notes: The image format can't be jpg...I=imread('d:\Pict\tiff\spine.tif');J=imnoise(I, 'salt & pepper', 0.02);figure(1), imshow(I);figure(2), imshow(J);K=medfilt2(J);figure(3), ims转载 2015-03-13 17:52:52 · 442 阅读 · 0 评论 -
Matlab Intro - Image Filter
I=imread('d:\t1.jpg');J=imnoise(I, 'salt & pepper', 0.02);figure(1), imshow(I);figure(2), imshow(J);h=fspecial('gaussian', [3 3], 0.5);L=imfilter(J, h);figure(3), imshow(L);k=[1 1 1;1转载 2015-03-13 16:12:46 · 628 阅读 · 0 评论 -
Matlab Intro - FFT
A = [ 0 0 0 0 0 0 0 0;0 0 0 0 0 0 0 0;0 0 0 1 1 0 0 0;0 0 0 1 1 0 0 0;0 0 0 1 1 0 0 0;0 0 0 1 1 0 0 0;0 0 0 0 0 0 0 0;0 0 0 0 0 0 0 0];figure(1), imshow(A);figure(2), mesh(A);B = f转载 2015-03-13 15:59:19 · 474 阅读 · 0 评论 -
Matlab Intro - Image Processing
A='d:\t1.jpg';B=imread(A, 'jpg');C=rgb2gray(B);imhist(C)imhist(C, 256)imhist(C)D=imadjust(C, [0 1], [0 1]);imshow(D);E=histeq(C);imshow(E);F=graythresh(C);G=im2bw(C,F);imshow(G转载 2015-03-13 15:54:55 · 611 阅读 · 0 评论 -
Kalman filter Intro - wiki
https://en.wikipedia.org/wiki/Kalman_filterUnderlying dynamic system model[edit]This section requires expansion. (August 2011)The Kalman filters are based on linear dynamic转载 2015-08-03 15:11:26 · 1512 阅读 · 0 评论