package com.kane.sensortest;import java.util.Random;import android.hardware.Sensor;import android.hardware.SensorEvent;import android.hardware.SensorE...
分类:
移动开发 时间:
2014-10-22 17:37:37
阅读次数:
218
SIFT(Scale-invariant feature transform)是一种检測局部特征的算法,该算法通过求一幅图中的特征点(interest points,or corner points)及其有关scale 和 orientation 的描写叙述子得到特征并进行图像特征点匹配,获得了良好...
分类:
其他好文 时间:
2014-10-21 19:18:31
阅读次数:
252
比如这个Button 必须用LinearLayout包起来,然后设置:android:layout_weight="0.1"android:gravity="bottom"android:orientation="vertical"
分类:
其他好文 时间:
2014-10-18 13:58:17
阅读次数:
298
参考:http://blog.csdn.net/sky_monkey/article/details/21466975整的错误提示信息为:No orientation specified, and the default is horizontal. This is a common source ...
分类:
其他好文 时间:
2014-10-17 11:52:47
阅读次数:
122
效果:
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF"
android:orientation="vertical" >
android:lay...
分类:
移动开发 时间:
2014-10-16 12:58:12
阅读次数:
175
package com.beyond.phonestolen;import android.hardware.Sensor;import android.hardware.SensorEvent;import android.hardware.SensorEventListener;import a...
分类:
移动开发 时间:
2014-10-14 21:21:39
阅读次数:
194
对于V1
INuiSensor * pNuiSensor;
HRESULT hr;
int iSensorCount = 0;
hr = NuiGetSensorCount(&iSensorCount);
if (FAILED(hr))
{
return hr;
}
//轮询每一个Kinect sensor
for (int i = 0; i < iSensorCo...
sqwswwEEEeUntitled Document 复习提纲 stereographic projection (definition and the way to find a projecting point) calculate square root for a given complex number triangle inequality differentiatio...
分类:
其他好文 时间:
2014-10-14 14:01:29
阅读次数:
412
1. 设定屏幕方向
当指定了屏幕的方向后(非SCREEN_ORIENTATION_UNSPECIFIED),屏幕就不会自动的旋转了
有2中方式控制屏幕方向:
1.1 修改AndroidManifest.xml
在AndroidManifest.xml的activity中加入:
横屏:
android:screenOrientation=”lan...
分类:
移动开发 时间:
2014-10-13 17:19:30
阅读次数:
232
请在Config.ftbl.flashlight.h (mediatek\custom\common\hal\flashlight\src)中,
将所有的两处注释掉的code:
//CameraParameters::FLASH_MODE_AUTO,
都打开为:
CameraParameters::FLASH_MODE_AUTO,...
分类:
移动开发 时间:
2014-10-13 15:11:49
阅读次数:
239