摘要: 1 :GPU Computing with MATLABhttp://www.mathworks.com/videos/gpu-computing-with-matlab-81840.html?form_seq=conf882&type=large2:Parallel Computing Toolb... 阅读全文
posted @ 2014-09-28 23:45 DeepVL 阅读(277) 评论(0) 推荐(0)
摘要: matlab存储矩阵时按照列存储,比如:A =[1 2 3;4 5 6;7 8 9]即:A = 1 2 3 4 5 6 7 8 9则A(:)= 1 4 7 2 5 8 3 6 9 阅读全文
posted @ 2014-09-28 23:45 DeepVL 阅读(154) 评论(0) 推荐(0)
摘要: 简介 MEX从字面上是MATLAB和Excutable 两个单词的缩写。 MEX文件是由C或Fortran语言编写的源代码,经matlab编译器处理而生成的二进制文件。它是可以被matlab解释器自动装载并执行的动态链接程序,类似windows下的dll文件。 MEX文件实现了一种其它语言与MA... 阅读全文
posted @ 2014-09-28 23:45 DeepVL 阅读(654) 评论(0) 推荐(0)
摘要: 1 :im2double : [0,255]---->[0,1]2:grp2idx:[G,GN] = grp2idx(S) creates an index vector G from the grouping variableS.The result G is a vector taking in... 阅读全文
posted @ 2014-09-28 23:45 DeepVL 阅读(2606) 评论(0) 推荐(0)
摘要: 1:到以下网站下载安装(Download mingw-get-setup.exe):http://sourceforge.net/projects/mingw/files/安装完后,会跳出一个窗口,让你选择要安装的组件,选择mingw32-gcc-g++,右键,Mark for Installati... 阅读全文
posted @ 2014-09-28 23:45 DeepVL 阅读(223) 评论(0) 推荐(0)
摘要: https://github.com/julycoding/The-Art-Of-Programming-By-JulyJuly csdn blog: http://blog.csdn.net/v_JULY_v?viewmode=list 阅读全文
posted @ 2014-09-28 23:45 DeepVL 阅读(156) 评论(0) 推荐(0)
摘要: http://www.slideshare.net/alexorso/how-to-get-my-paper-accepted-at-top-software-engineering-conferences 阅读全文
posted @ 2014-09-28 23:45 DeepVL 阅读(76) 评论(0) 推荐(0)
摘要: 这是一个UCB做分割做的结果比较早、比较好的分割方法,其工程网站为:http://www.cs.berkeley.edu/~fowlkes/BSE/上面有代码及一些简单的介绍,此代码基于以下三篇文章:(1): C. Fowlkes, J. Malik. "How Much Does Globaliz... 阅读全文
posted @ 2014-09-28 23:45 DeepVL 阅读(493) 评论(0) 推荐(0)
摘要: 方法一: 命令行方式输入uname -m若输出为x86_64,则为64bit;若输出为i686,则为32bit方法二:System Settings---->Details--->OS type,后面值即可看出是64bit还是32bit。 阅读全文
posted @ 2014-09-28 23:45 DeepVL 阅读(121) 评论(0) 推荐(0)
摘要: Reference Style - All LevelsA Tour of C++(Bjarne Stroustrup) The "tour" is a quick (about 180 pages and 14 chapters) tutorial overview of all of stand... 阅读全文
posted @ 2014-09-28 23:45 DeepVL 阅读(186) 评论(0) 推荐(0)