UIImagePickerController *camera;//点击tableView上得按钮,弹出UIActionSheet- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)ind...
分类:
其他好文 时间:
2014-12-05 16:58:02
阅读次数:
170
We know that in the HAL Vendor implementation of dynamic to load a name for the camera.$platform$.so file, then to define the load Android HAL, here to Camera HAL 2 and Qualcomm msm8960 for example...
分类:
其他好文 时间:
2014-12-05 15:43:58
阅读次数:
314
手上有个CCD Camera(Barcode Reader/Scanner Module),它是通过RS232通信的,用RS232转USB的转接线连接树莓派,即可完成硬件连接。对于串口通信,可以通过pyserial实现。
首先,安装pyserial:
从https://pypi.python.org/pypi/pyserial下载最新版本的安装包,再通过下面的命令完成安装:
tar zxvf...
分类:
编程语言 时间:
2014-12-05 12:46:16
阅读次数:
443
Abstract. OpenCASCADE introduce a new class Graphic3d_Camera for the Visualization module. The camera class provides object-oriented approach to setti...
分类:
其他好文 时间:
2014-12-03 23:05:37
阅读次数:
425
今天做项目的时候遇到一个问题:当html通过js调用input of type file时候,希望android手机的选择器可以同时出现“相机”和“图片”等,但通过下面代码Intent i = new Intent(Intent.ACTION_GET_CONTENT);i.addCategory.....
分类:
移动开发 时间:
2014-12-02 19:03:01
阅读次数:
199
转至http://blog.csdn.net/think_soft/article/details/7998478使用Camera功能大多数的Camera功能都是使用Camera.Parameters对象来激活和控制的。首先要通过Camera对象实例的getParameters()方法,来获取这个对...
分类:
其他好文 时间:
2014-12-02 17:04:26
阅读次数:
307
Camera.java autoFocus()聚焦回调函数@Override public void autoFocus() { //记录当前聚焦开始时间 mFocusStartTime = System.currentTimeMillis(); //...
分类:
移动开发 时间:
2014-11-30 23:05:23
阅读次数:
335
At the beginning, I need to explain some knowledge about color space.The raw RGB is linear, but the sRGB value generated by camera is nonlinear value....
分类:
其他好文 时间:
2014-11-29 14:27:55
阅读次数:
130
代理模式的核心其实就是在 上层代码和framework层代码之间增加一个中间层。 从而对于核心代码来说,对于上层是透明的。 使用代理模式可以很好的,剪切核心代码功能,或者扩展功能已符合上层代码的使用。 已一个开关camera的例子来演示代理模式: 1.对于上层来说,并不关心camera的...
分类:
其他好文 时间:
2014-11-28 19:53:33
阅读次数:
229
Camera是相机对象的抽象基类,当创建相机时都从这个类继承.Camera对象的功能函数采用定义构造的函数原型对象来实现.
THREE.Camera = function () {
THREE.Object3D.call( this ); //调用Object3D对象的call方法,将原本属于Object3D的方法交给当前对象Camera来使用.
this.matrixWorldInverse = new THREE.Matrix4(); //为相机设置属性matrixWorldInverse,这...
分类:
Web程序 时间:
2014-11-28 16:26:21
阅读次数:
170