随笔分类 -  计算机视觉与机器学习

计算机视觉与机器学习
摘要:一、特征提取Feature Extraction:SIFT [1] [Demo program][SIFT Library] [VLFeat]PCA-SIFT [2] [Project]Affine-SIFT [3] [Project]SURF [4] [OpenSURF] [Matlab Wrapper]Affine Covariant Features [5] [Oxford project]MSER [6] [Oxford project] [VLFeat]Geometric Blur [7] [Code]Local Self-Similarity Descriptor [8] [Oxf 阅读全文
posted @ 2014-03-11 17:21 einyboy 阅读(49660) 评论(6) 推荐(20) 编辑
摘要:一、 定义离散信号f(n),g(n)的定义如下:N-----为信号f(n)的长度s(n)----为卷积结果序列,长度为len(f(n))+len(g(n))-1例:f(n) = [1 2 3]; g(n) = [2 3 1];s(0) = f(0)g(0-0) + f(1)g(0-1)+f(2)g(0-2)= 1*2 + 2*0 + 3*0 =2s(1) = f(0)g(1-0) + f(1)g(1-1) + f(2)g(1-2) = 1*3 + 2*2 + 3*0 = 7s(2) = f(0)g(2-0) + f(1)g(2-1) + f(2)g(2-2)=1*1 + 2*3 + 3*2=1 阅读全文
posted @ 2012-12-30 11:53 einyboy 阅读(23240) 评论(3) 推荐(4) 编辑
只有注册用户登录后才能阅读该文。
posted @ 2012-09-04 11:56 einyboy 阅读(21) 评论(0) 推荐(0) 编辑
摘要:cl;img1=imread('gaosi.jpg');[m,n]=size(img1);w=fspecial('gaussian',[3 3]);img2=imresize(imfilter(img1,w),[m/2 n/2]);img3=imresize(imfilter(img2,w),[m/4 n/4]);img4=imresize(imfilter(img3,w),[m/8 n/8]);img5=imresize(imfilter(img4,w),[m/16 n/16]);imshow(img1);figure,imshow(img2);figure, 阅读全文
posted @ 2012-08-10 11:57 einyboy 阅读(646) 评论(0) 推荐(0) 编辑
摘要:一、通用函数:colorbar显示彩色条语法:colorbar \ colorbar('vert') \ colorbar('horiz') \ colorbar(h) \ h=colorbar(...) \ colorbar(...,'peer',axes_handle)getimage 从坐标轴取得图像数据语法:A=getimage(h) \ [x,y,A]=getimage(h) \ [...,A,flag]=getimage(h) \ [...]=getimageimshow 显示图像语法:imshow(I,n) \ imshow(I,[ 阅读全文
posted @ 2012-08-05 11:16 einyboy 阅读(8144) 评论(0) 推荐(1) 编辑
摘要:1. PETS2001的测试视频内容如下,可以得到如下所示5个DATASET,有训练和测试视频:ftp://ftp.cs.rdg.ac.uk/pub/PETS2001/ direct532 B 2001-07-25welcome.msg 5 mirrors6 B 2006-10-24WWW 2 mirrors532 B 2001-07-25PETS2001_README 2 mirrors0 2001-12-11DoNotDownLoadThisFile 2 mirrors[DIR]DATASET5/ direct 2 twin directories[DIR]DATASET4/ direct 阅读全文
posted @ 2012-08-03 09:58 einyboy 阅读(2027) 评论(0) 推荐(0) 编辑
摘要:高斯背景建模 阅读全文
posted @ 2012-08-02 11:05 einyboy 阅读(214) 评论(0) 推荐(0) 编辑
摘要:[W,s,v] = svd((repmat(sum(x.*x,1),szie(x,1),1).*x)*x'); 阅读全文
posted @ 2012-07-30 13:05 einyboy 阅读(265) 评论(0) 推荐(0) 编辑
摘要:http://people.csail.mit.edu/torralba/shortCourseRLOC/This course reviews current methods for object category recognition, dividing them into four main areas: bag of words models; parts and structure models; discriminative methods and combined recognition and segmentation. The emphasis will be on the 阅读全文
posted @ 2012-07-02 15:16 einyboy 阅读(481) 评论(0) 推荐(0) 编辑