由于phonegap升级较快,在3.X之后改变了它的插件机制,所有调用手机原生的功能全部以外部插件的形式提供,创建phonegap项目之后不再能够直接调用系统功能API如camera,device等,所以必须以插件的形式引入到项目中来,才能够使用。 这里主要讲的是自定义插件的开发及在项目中调...
分类:
其他好文 时间:
2014-08-03 17:36:15
阅读次数:
263
总体介绍
Android Camera框架从整体上看是一个client/service架构。有两个进程,一个是client进程,可以看成AP端
,主要包括Java代码和一些native层的c/c++代码;另一个是service进程,属于服务端,是native c/c++代码,
主要负责和linux kernel中的camera driver交互,搜集linux kernel中...
分类:
移动开发 时间:
2014-08-03 10:20:45
阅读次数:
472
【Camera’s Depth Texture】 In Unity a Camera can generate a depth or depth+normals texture. This is a minimalistic G-buffer texture that can be used fo....
分类:
其他好文 时间:
2014-08-02 15:05:33
阅读次数:
202
using UnityEngine;using System.Collections; public class NPC : MonoBehaviour { //主摄像机对象 private Camera camera; //NPC名称 private string nam...
分类:
其他好文 时间:
2014-08-01 22:42:52
阅读次数:
176
phonegap的拍照插件选择图库中的图片,代码如下:
navigator.camera.getPicture(function(uri){
console.log(uri);//这里得到图片的uri
}, this.failure, {
quality: 70,
destinationType: navigator.camera.DestinationType.FILE_...
分类:
移动开发 时间:
2014-07-31 13:28:36
阅读次数:
398
方法:private Camera openFrontFacingCameraGingerbread() { int cameraCount = 0; Camera cam = null; Camera.CameraInfo cameraInfo = new Camera.Came...
分类:
移动开发 时间:
2014-07-30 20:11:54
阅读次数:
169
1.调用系统摄像头 1.声明常量和变量 2.按钮点击事件,打开系统摄像头 3.重写onActivityResult事件接收拍照返回 4.生成文件名返回路径5.保存图片[java]view plaincopyprivatestaticfinalintTAKE_PICTURE=1;classbtnGot...
分类:
移动开发 时间:
2014-07-27 23:09:39
阅读次数:
245
【Rendering with Replaced Shaders】 It works like this: the camera renders the scene as it normally would. the objects still use their materials, but t....
分类:
其他好文 时间:
2014-07-27 22:26:09
阅读次数:
185
1、voidRender();Description Render the camera manually.This will render the camera. It will use the camera's clear flags, target texture and all other....
分类:
其他好文 时间:
2014-07-27 21:58:19
阅读次数:
335
本文主要介绍使用Google自带的FaceDetectionListener进行人脸检测,并将检测到的人脸用矩形框绘制出来。本文代码基于PlayCameraV1.0.0,在Camera的open和preview流程上进行了改动。原先是放在单独线程里,这次我又把它放到Surfaceview的生命周期里进行打开和开预览。 首先要反省下,去年就推出了静态图片的人脸检测demo,当时许诺一周内推出C...
分类:
移动开发 时间:
2014-07-25 11:19:01
阅读次数:
1085