上一页 1 2 3 4 5 6 7 8 9 ··· 16 下一页
摘要: http://www.cse.ust.hk/~ivor/resource.htm#programmingResources Links C/C++ Programming C++ Tutoral The cplusplus.com Tutorial C++ String Introduction to Object-Oriented Programming Using C++ DJGPP Standard Templale Library Template Example Machine Learning Softwares SVM Light - Support Vector Machine 阅读全文
posted @ 2012-10-06 01:05 Avril 阅读(823) 评论(1) 推荐(2) 编辑
摘要: 原文地址:http://www.matlabsky.com/thread-9268-1-1.html==================================================几个要说明的函数接口:[Y,PS] = mapminmax(X)[Y,PS] = mapminmax(X,FP)Y = mapminmax('apply',X,PS)X = mapminmax('reverse',Y,PS)用实例来讲解,测试数据x1 = [1 2 4], x2 = [5 2 3];>> [y,ps] = mapminmax(x1)y = 阅读全文
posted @ 2012-09-27 09:19 Avril 阅读(9679) 评论(0) 推荐(2) 编辑
摘要: 在图像处理任务中经常会对很多图片进行特征提取,每幅图片的特征提取的过程都是可以并行的。http://www.mathworks.cn/cn/help/distcomp/parfor.htmlhttp://www.mathworks.cn/cn/help/distcomp/matlabpool.htmlExamplesPerform three large eigenvalue computations using three computers or cores:matlabpool(3)parfor i=1:3, c(:,i) = eig(rand(1000)); end关于Sliced v 阅读全文
posted @ 2012-09-26 12:22 Avril 阅读(1538) 评论(0) 推荐(0) 编辑
摘要: 原文地址:http://www.matlabsky.com/forum.php?mod=viewthread&tid=21089从cell使用说起在读取文件的时候,cell数组(各种翻译都有,元胞数组,单元数组...直接无视)是Matlab的宠儿,基本都会出现,长期使用发现频率比struct高了不少~无论是Import Data还是使用textscan之类来获取数据.从长期使用高级语言的角度来说,特别是习惯了面向对象之后i,更习惯使用struct数组,概念也很相似,奈何现实是...我们先看一下Matlab在help给出的定义:A cell array is a collection o 阅读全文
posted @ 2012-09-26 11:32 Avril 阅读(13230) 评论(1) 推荐(2) 编辑
摘要: 首先,我要声明,matlab自带的Help才是最权威的Matlab学习资料,如果有时间好好学习一下或是可以高效的使用的话,一定受益匪浅!比如说像Out of Memory这个问题,最开始我都是用Help memory,几乎得不到任何信息;然后就是去网上搜索此类问题的解决方法,一般有这几种:除了升级内存和升级64位系统外,下面几个方法也是解决之道。# 增加虚拟内存%%试了,不行# 采用PACK (在命令行输入 pack 整理内存空间)%% pack命令不能用在程序中# 采用3GB 开关启动系统(修改 c盘根目录 boot.ini 启动选项加上 /3G 例如:multi(0)disk(0)rdis 阅读全文
posted @ 2012-09-20 09:16 Avril 阅读(1805) 评论(0) 推荐(0) 编辑
摘要: 最近做的两个实验中,都需要对在linux下编写的mex程序进行修改使得能够在windows平台下编译。其一:deformable part model的源码http://www.cs.brown.edu/~pff/latent/其二:使用HOG特征进行templateMatching的小demo,使用了上述源码中的resize,以及feature提取和convolution的.cc源码进行mex编译。http://web.mit.edu/jxiao/的网页下的:http://web.mit.edu/jxiao/Public/software/templateMatching/下面简述修改方法: 阅读全文
posted @ 2012-09-12 19:37 Avril 阅读(2104) 评论(0) 推荐(1) 编辑
摘要: 学习与示例:http://www.mathworks.cn/cn/help/matlab/creating-c-c-and-fortran-programs-to-be-callable-from-matlab-mex-files.html附博文:http://hi.baidu.com/gjviootibjbgtyd/item/521987c33433e666f6c95dbc1. MEX的编写格式写MEX程序其实就是写一个DLL程序,所以你可以使用C,C++,Fortran等多种编程语言来写。编写MEX程序的编辑器可以使用MATLAB的代码编辑器,也可使用自己的C++编辑器,如VS2008等。 阅读全文
posted @ 2012-09-12 09:35 Avril 阅读(13025) 评论(1) 推荐(0) 编辑
摘要: http://blog.pluskid.org/?p=696http://www.cnblogs.com/LeftNotEasy/archive/2011/05/02/basic-of-svm.htmlSVM开源的包很多,像libsvm,svmlight等等。opencv实现是基于libsvm2.6写的。 阅读全文
posted @ 2012-09-11 21:24 Avril 阅读(320) 评论(0) 推荐(0) 编辑
摘要: CVPR 2012 just ended in Providence and I wanted to quickly summarize some of my personal highlights, lessons and thoughts.FREAK: Fast Retina KeypointFREAKis a new orientation-invarient binary descriptor proposed by Alexandre Alahi et al. It can be extracted on a patch by comparing two values in the 阅读全文
posted @ 2012-09-06 10:24 Avril 阅读(774) 评论(0) 推荐(0) 编辑
摘要: --2009--1. Image Descriptors· [SIFT] Lowe, D.G.Distinctive image features from scale-invariant keypoints. IJCV, 2004.·· [GIST] Oliva, A., Torralba, A.Modeling the shape of the scene: a holistic representation of the spatial envelope. IJCV, 2001.· [Shape Context] Belongie S., Mali 阅读全文
posted @ 2012-09-06 10:22 Avril 阅读(448) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 16 下一页