该系统主要由三部分组成:kinetic 传感器、转换板(translation
surface);转换板的作用是减少身体上不规则表面产生的噪声,而且可以放大呼吸运动来克服低的深度图像分辨率。通过SDK里的函数获取感兴趣区域的深度图,求平均值来减少噪声,每一帧的平均深度图都要保存,然后会输出一个文本文...
分类:
其他好文 时间:
2014-05-27 01:24:31
阅读次数:
276
数据挖掘最常见的十种方法下面介绍十种数据挖掘(Data
Mining)的分析方法,以便于大家对模型的初步了解,这些都是日常挖掘中经常遇到的算法,希望对大家有用!(甚至有数据挖掘公司,用其中的一种算法就能独步天下)1、基于历史的MBR分析(Memory-Based
Reasoning;MBR)基于历史...
分类:
其他好文 时间:
2014-05-24 00:17:58
阅读次数:
301
和startActivity()类似,startActivities也是界面跳转,但是传入的intent是一个数组,也就是说是多个。
假设我传入的是两个intent: I1和I2,则调用startActivities之后,直接到I2界面,按返回键,到I1界面。其中到I2的过程中,不会经过I1界面,也就是说,不过存在I1的生命周期之说。...
分类:
其他好文 时间:
2014-05-22 12:44:31
阅读次数:
235
报错信息如下:信息: The APR based Apache Tomcat Native
library which allows optimal performance in production environments was not
found on the java.library.pa...
分类:
编程语言 时间:
2014-05-19 18:28:12
阅读次数:
298
package com.dhy.phonedial;
import android.app.Activity;
import android.app.Fragment;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.LayoutInflate...
分类:
移动开发 时间:
2014-05-18 15:58:42
阅读次数:
342
Android Intent传递对象小结
Intent 传递复杂类型,例如:数组,ArrayList类型,传递类对象...
分类:
移动开发 时间:
2014-05-18 06:54:14
阅读次数:
338
如下58同城快捷方式的效果:
下面是添加桌面快捷方式:
/**
* 启动某个activity是需要在manifest里面定义
*/
private void addShortCut()
{
// 安装的Intent
Intent shortc...
分类:
移动开发 时间:
2014-05-18 04:52:12
阅读次数:
289
A simple actions recognition system based on
PCA, MHI and SVM.
分类:
其他好文 时间:
2014-05-17 19:20:44
阅读次数:
222
package com.example.HyyRecord;import
android.app.Activity;import android.content.Intent;import
android.media.MediaRecorder;import android.net.Uri;impo...
分类:
移动开发 时间:
2014-05-17 19:09:09
阅读次数:
349
Intent intent = new Intent();
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setAction(Intent.ACTION_VIEW); inten...
分类:
移动开发 时间:
2014-05-17 19:03:17
阅读次数:
257