码迷,mamicode.com
首页 >  
搜索关键字:orientation sensor    ( 1108个结果
Android学习笔记-Activity的布局
线性布局<?xmlversion="1.0"encoding="utf-8"?> <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical"> <!-- android:id为控件..
分类:移动开发   时间:2014-11-17 19:43:38    阅读次数:283
Storm Trident API 实践
一、概要      1.1 Storm(简介)      Storm是一个实时的可靠地分布式流计算框架。      具体就不多说了,举个例子,它的一个典型的大数据实时计算应用场景:从Kafka消息队列读取消息(可以是logs,clicks,sensor data)、通过Storm对消息进行计算聚合等预处理、把处理结果持久化到NoSQL数据库或者HDFS做进一步深入分析。 1.2 Tride...
分类:Windows程序   时间:2014-11-14 15:42:08    阅读次数:2971
Storm Trident 详细介绍
一、概要      1.1 Storm(简介)      Storm是一个实时的可靠地分布式流计算框架。      具体就不多说了,举个例子,它的一个典型的大数据实时计算应用场景:从Kafka消息队列读取消息(可以是logs,clicks,sensor data)、通过Storm对消息进行计算聚合等预处理、把处理结果持久化到NoSQL数据库或者HDFS做进一步深入分析。...
分类:其他好文   时间:2014-11-14 14:15:48    阅读次数:291
SIFT 和SURF
1.SIFTSIFT(Scale-invariant feature transform)是一种检测局部特征的算法,该算法通过求一幅图中的特征点(interest points,or corner points)及其有关scale 和 orientation 的描述子得到特征并进行图像特征点匹配,获...
分类:其他好文   时间:2014-11-14 10:41:23    阅读次数:286
js判断手机 横屏模式
if(window.orientation!=0){ var obj=document.getElementById('orientation'); alert('横屏内容太少啦,请使用竖屏观看!'); obj.style.display='block';}window.onori...
分类:移动开发   时间:2014-11-14 10:34:57    阅读次数:193
基于jQuery的判断iPad、iPhone、Android是横屏还是竖屏
function orient() {if (window.orientation == 90 || window.orientation == -90) {//ipad、iphone竖屏;Andriod横屏$("body").attr("class", "landscape");orientati...
分类:移动开发   时间:2014-11-14 10:26:23    阅读次数:183
android 界面布局 很好的一篇总结[转]
在android中我们常用的布局方式有这么几种: 1.LinearLayout (线性布局):(里面只可以有一个控件,并且不能设计这个控件的位置,控件会放到左上角) 线性布局分为水平线性和垂直线性二者的属性分别为:android:orientation="horizontal"andro...
分类:移动开发   时间:2014-11-12 22:35:15    阅读次数:358
通过FPGA驱动OV5640调试记录
最近无聊,想通过FPGA来驱动OV5640,达到高速并行的图像处理。其中使用了8个sensor。是Omnivision的500W高清摄像头。主要用于手机,pad,等移动设备的主摄像头。在网上搜索了一把,包括谷歌和百度。都没发现太有价值的信息。后面自己硬着头皮开始自己来弄。应该用fpga控制ov5640我属于首创。  经过漫长的原理图设计,原理图如下: 其中的DOVDD使用的是D1.8V,这...
分类:其他好文   时间:2014-11-12 10:29:23    阅读次数:455
android 自学笔记2-布局
1.LinearLayout<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal"> <!--<Button--> <!--android:id="@+id/button1"-..
分类:移动开发   时间:2014-11-11 23:01:11    阅读次数:263
挑战一下吧!C#测试开发工程师英语面试题
1.Given a rectangular (cuboidal for the puritans) cake with a rectangular piece removed (any size or orientation), how would you cut the remainder of ...
分类:Windows程序   时间:2014-11-10 13:21:35    阅读次数:334
1108条   上一页 1 ... 95 96 97 98 99 ... 111 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!