#-*-coding:cp936-*-#!/usr/bin/envpython#-*-coding:utf-8-*-fromPyQt4importQtCore,QtGuiclassWindow(QtGui.QMainWindow):def__init__(self):super(Window,sel...
分类:
其他好文 时间:
2014-10-04 18:35:57
阅读次数:
184
一、特征提取Feature Extraction:· SIFT [1] [Demo program][SIFT Library] [VLFeat]· PCA-SIFT [2] [Project]· Affine-SIFT [3] [Project]· SURF [4] [OpenSURF] [Mat...
分类:
其他好文 时间:
2014-10-03 18:51:35
阅读次数:
469
继承中的构造方法1、子类的构造过程中必须调用其基类的构造方法。2、子类可以在自己的构造方法中使用super(argument_list)调用基类的构造方法。 2.1、使用this(argument_list)调用本类的另外构造方法。 2.2、如果调用super,必须写在子类构造方法的第一行。...
分类:
编程语言 时间:
2014-10-03 13:37:34
阅读次数:
243
为啥会有SPM→ScSPM呢?原因之一是为了寻找better coding + better pooling的方式提高性能,原因之二就是提高速度。如何提高速度?这里的速度,不是Coding+Pooling的速度,而是分类器的速度。SPM设计的是一个Linear feature,在文章中作者用于实验则...
分类:
其他好文 时间:
2014-10-02 21:34:13
阅读次数:
430
“网络,并发”是Go语言的两大feature。Go语言号称“互联网的C语言”,与使用传统的C语言相比,写一个Server所使用的代码更少,也更简单。写一个Server除了网络,另外就是并发,相对python等其它语言,Go对并发支持使得它有更好的性能。
Goroutine和channel是Go在“...
分类:
其他好文 时间:
2014-10-02 02:15:12
阅读次数:
250
====================问题描述==================== 为什么这么写无法获取到服务器上的图片资源protectedvoidonCreate(BundlesavedInstanceState){super.onCreate(savedInstanceState);se...
分类:
其他好文 时间:
2014-09-30 16:58:19
阅读次数:
117
1.:
官方描述:
If an application needs access to a feature protected by a permission, it must declare that it requires that permission
with a element
in the manifest. Then, when the application is...
分类:
移动开发 时间:
2014-09-30 13:31:19
阅读次数:
224
import相关的
public class MainActivity extends Activity {
定义好所有需要的控件
private TextView tv
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceStat...
分类:
移动开发 时间:
2014-09-30 12:49:49
阅读次数:
180
@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); final DisplayMetrics d....
分类:
移动开发 时间:
2014-09-30 12:35:12
阅读次数:
238
super关键字:在java中使用super来引用基类的成分。程序code:class FatherClass{ public int value; public void f(){ value = 100; System.out.println("Fathe...
分类:
编程语言 时间:
2014-09-30 00:35:41
阅读次数:
261