1.SIFTSIFT(Scale-invariant feature transform)是一种检测局部特征的算法,该算法通过求一幅图中的特征点(interest points,or corner points)及其有关scale 和 orientation 的描述子得到特征并进行图像特征点匹配,获...
分类:
其他好文 时间:
2014-11-14 10:41:23
阅读次数:
286
We Recommend a Singular Value Decomposition
我们推荐奇异值分解
奇异值分解可以方便地把一个矩阵(包含我们感兴趣的数据)分解得更加简单和有意义。 本文讲解了奇异值分解的几何解释,顺便也介绍了一些应用。
From http://www.ams.org/samplings/feature-column/fcarc-svd
David Austin,Grand ValleyState University
本文的主题是奇异值分解(singular value...
分类:
其他好文 时间:
2014-11-13 16:37:17
阅读次数:
439
Android:去掉标题栏的三种方法和全屏的三种方法第一种:一般入门的时候常常使用的一种方法onCreate函数中增加下面代码:requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏注意这句一定要写在setContentView()方法的前面,不然...
分类:
移动开发 时间:
2014-11-13 12:35:37
阅读次数:
138
============问题描述============ 要在title栏里设置一个button,新建了title.xml,也在OnCreate方法里调用了requestWindowFeature(Window.FEATURE_CUSTOM_TITLE); setContentView(R.layo...
分类:
移动开发 时间:
2014-11-12 13:18:36
阅读次数:
156
转自什么是MantisMantisBT is a free popular web-based bugtracking system (feature list). It is written in the PHP scripting language and works with MySQL, M...
分类:
其他好文 时间:
2014-11-11 18:06:27
阅读次数:
306
Volley主页https://android.googlesource.com/platform/frameworks/volleyhttp://www.youtube.com/watch?v=yhv8l9F44qo&feature=player_embedded1. 什么是Volley在这之前,...
分类:
移动开发 时间:
2014-11-11 14:00:17
阅读次数:
285
在android中去掉标题栏有三种方法,它们也有各自的特点。
1.在代码里实现
[java]
view plaincopyprint?
this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏
this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去...
分类:
移动开发 时间:
2014-11-11 09:25:47
阅读次数:
173
xml1Susake2游戏核心代码CCDictionary *strings = CCDictionary::createWithContentsOfFile("feature.xml");std::string str = ((CCString*)strings->objectForKey("1"...
分类:
其他好文 时间:
2014-11-11 02:02:30
阅读次数:
216
In the last post we created aScrollViewer Thumbnailfeature using a just a bit of Xaml and databinding magic.Since it's a pretty useful feature, it mak...
分类:
其他好文 时间:
2014-11-10 17:13:42
阅读次数:
274
先介绍去掉标题栏的方法:第一种:也一般入门的时候经常使用的一种方法requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏注意这句一定要写在setContentView()方法的前面,不然会报错的第二种:在AndroidManifest.xml文件中...
分类:
移动开发 时间:
2014-11-10 11:53:14
阅读次数:
241