`

自己封装的支持自动对焦的CameraView

阅读更多

import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.lang.reflect.Method;
import java.util.Date;

import android.content.Context;
import android.content.pm.ActivityInfo;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.hardware.Camera;
import android.media.MediaPlayer;
import android.os.Build;
import android.util.AttributeSet;
import android.view.SurfaceHolder;
import android.view.SurfaceView;

public class CameraView extends SurfaceView implements SurfaceHolder.Callback,
		Camera.AutoFocusCallback, Camera.PictureCallback {

	private TakePictureListener mListener;

	/**
	 * This is a holder that holding a display surface.
	 */
	private SurfaceHolder mHolder = null;

	private int sdk = 3;

	/**
	 * This is a camera object using for connect/disconnect with the camera
	 * service,and so on.
	 */
	private Camera mCamera;

	/**
	 * Perform inflation from XML and apply a class-specific base style. This
	 * constructor of View allows subclasses to use their own base style when
	 * they are inflating.
	 * 
	 * @param context
	 *            The Context the view is running in, through which it can
	 *            access the current theme, resources, etc.
	 * @param attrs
	 *            The attributes of the XML tag that is inflating the view.
	 * @param defStyle
	 *            The default style to apply to this view. If 0, no style will
	 *            be applied (beyond what is included in the theme). This may
	 *            either be an attribute resource, whose value will be retrieved
	 *            from the current theme, or an explicit style resource.
	 */
	public CameraView(Context context, AttributeSet attrs, int defStyle) {
		super(context, attrs, defStyle);
		init();
	}

	/**
	 * Constructor that is called when inflating a view from XML. This is called
	 * when a view is being constructed from an XML file, supplying attributes
	 * that were specified in the XML file. This version uses a default style of
	 * 0, so the only attribute values applied are those in the Context's Theme
	 * and the given AttributeSet.
	 * 
	 * @param context
	 *            The Context the view is running in, through which it can
	 *            access the current theme, resources, etc.
	 * @param attrs
	 *            The attributes of the XML tag that is inflating the view.
	 */
	public CameraView(Context context, AttributeSet attrs) {
		super(context, attrs);
		init();
	}

	/**
	 * Simple constructor to use when creating a view from code.
	 * 
	 * @param context
	 *            The Context the view is running in, through which it can
	 *            access the current theme, resources, etc.
	 */
	public CameraView(Context context) {
		super(context);
		init();
	}

	public void init() {
		if (mHolder == null) {
			mHolder = getHolder();
			mHolder.addCallback(this);
			mHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);

			sdk = getSDKInt();
		}
	}

	@Override
	public void surfaceChanged(SurfaceHolder holder, int format, int width,
			int height) {

		try {

			// rotate camera 90 degree on portrait mode
			if (getContext().getResources().getConfiguration().orientation == ActivityInfo.SCREEN_ORIENTATION_PORTRAIT) {

				if (sdk <= 4) {

					// 1.5 & 1.6
					Camera.Parameters parameters = mCamera.getParameters();
					parameters.set("orientation", "portrait");
					mCamera.setParameters(parameters);
				} else {
					setDisplayOrientation(mCamera, 90);
				}
			}

		} catch (Exception e) {
			e.printStackTrace();
		}

		startPreview();
	}

	/**
	 * rotate camera with any degree, only available for SDK 5 and later
	 * 
	 * @param camera
	 * @param angle
	 */
	private void setDisplayOrientation(Camera camera, int angle) {
		Method downPolymorphic;

		if (sdk <= 4)
			return;

		try {
			if (sdk > 4 && sdk < 8) {

				// parameters for pictures created by a Camera service.
				Camera.Parameters parameters = mCamera.getParameters();

				// 2.0, 2.1
				downPolymorphic = parameters.getClass().getMethod(
						"setRotation", new Class[] { int.class });
				if (downPolymorphic != null)
					downPolymorphic.invoke(parameters, new Object[] { angle });

				// Sets the Parameters for pictures from this Camera
				// service.
				mCamera.setParameters(parameters);

			} else {

				downPolymorphic = camera.getClass().getMethod(
						"setDisplayOrientation", new Class[] { int.class });
				if (downPolymorphic != null)
					downPolymorphic.invoke(camera, new Object[] { angle });
			}
		} catch (Exception e) {
		}
	}

	@Override
	public void surfaceCreated(SurfaceHolder holder) {

		// get Camera object.
		try {
			mCamera = Camera.open();
			mCamera.setPreviewDisplay(holder);

		} catch (RuntimeException e) {
			e.printStackTrace();
			releaseCamera();
		} catch (IOException e) {
			e.printStackTrace();
			releaseCamera();
		}
	}

	public void stopPreview() {
		releaseCamera();
	}

	public void startPreview() {
		if (mCamera != null) {
			mCamera.startPreview();
			mCamera.autoFocus(this);
		}
	}

	@Override
	public void surfaceDestroyed(SurfaceHolder holder) {
		releaseCamera();
	}

	private void releaseCamera() {
		if (mCamera != null) {
			mCamera.stopPreview();
			mCamera.release();
		}
		mCamera = null;
		System.gc();
	}

	private int getSDKInt() {
		// this is safe so that we don't need to use SDKInt which is only
		// available after 1.6
		try {
			return Integer.parseInt(Build.VERSION.SDK);
		} catch (Exception e) {
			return 3; // default to target 1.5 cupcake
		}
	}

	@Override
	public void onAutoFocus(boolean success, Camera camera) {
		if (success)
			mCamera.takePicture(null, null, this);
	}

	@Override
	public void onPictureTaken(byte[] data, Camera camera) {

		if (mListener != null) {

			Bitmap cameraBitmap = BitmapFactory.decodeByteArray(data, 0,
					data.length);
			} catch (Exception e) {
				e.printStackTrace();
			}

			mListener.onTakePicture(cameraBitmap);
		}

		startPreview();
	}

	public void setTakePictureListener(TakePictureListener listener) {
		mListener = listener;
	}

	public interface TakePictureListener {

		public void onTakePicture(Bitmap bitmap);
	}
}
分享到:
评论
1 楼 Goro 2012-07-12  
帅!

相关推荐

    摄像头自动对焦马达芯片DW9714数据手册

    ### 摄像头自动对焦马达芯片DW9714数据手册解析 #### 一、概述 本文档旨在详细介绍DW9714这款10位分辨率的VCM(Voice Coil Motor)驱动集成电路(IC),它具备I²C接口,并专为摄像头自动对焦系统设计。该芯片支持...

    OV5640自动对焦摄像头用户手册

    ### OV5640自动对焦摄像头用户手册关键知识点解析 #### 一、产品概述 OV5640是一款采用1/4英寸彩色CMOS QSXGA(5百万像素)图像传感器的产品,集成了OmniBSI™技术,旨在提供高清晰度的成像效果。该传感器特别适用...

    安森美推出全功能用于手机相机模块自动对焦控制器

    【安森美半导体的LC898214XC自动对焦控制器】 安森美半导体在2014年7月17日发布了一款专为智能手机相机模块设计的自动对焦控制器——LC898214XC。这款控制器是针对日益增长的对手机相机功能提升的需求,特别是对...

    软件自动安装器,可自由编辑,自动安装软件,可用于系统封装

    此外,自动安装器还可能支持静默安装模式,即在后台运行且不显示任何用户界面,进一步简化流程。 “可用于系统封装”表明这个自动安装器适用于创建预装有各种软件的操作系统镜像。系统封装是将一个已经配置好的系统...

    安捷伦推出数码相机自动对焦LED 亮度达18堪

    据称这是目前市场上亮度、封装尺寸的自动对焦LED,在20mA时的标准输出为18堪(candela),尺寸为4.8×4.8mm。 传统的相机通常使用红外线二极管(IR LED)作为弱光环境下的自动对焦光源,因为只有IR LED才能提供这类...

    OV5640应用笔记(MIPI接口)

    OV5640自动对焦摄像头应用笔记(MIPI接口)

    显示/光电技术中的Avago 推出高亮度绿光自动对焦辅助闪光LED

    描述中提到的Avago ASMT-FG10自动对焦辅助闪光用LED,尺寸小巧,约为铅笔头橡皮擦的大小,具有业界最高的亮度和最紧凑的封装。它为数码相机设计工程师提供了一种简便的安装方式,能够帮助那些需要在暗环境中实现精确...

    传感技术中的安捷伦推出数码相机自动对焦LED 亮度达18堪

    传感技术在数码相机领域的发展取得了重大突破,其中安捷伦(Agilent)推出的ASMT-FJ10自动对焦LED引领了这一领域的创新。这款LED专为数码相机在低光照条件下的自动对焦功能设计,提供了前所未有的亮度性能,不仅在技术...

    安捷伦为数码相机推出小体积自动对焦辅助LED闪光灯..

    标题提及的安捷伦科技有限公司推出的ASMT-FJ10是一款专为数码相机设计的小体积自动对焦辅助LED闪光灯,旨在改善弱光环境下的摄影体验。这款LED具有极高的亮度,是市场上亮度最高的自动对焦LED之一。在20毫安的电流下...

    Allegro Skill封装创建工具

    本工具基于Cadence公司的Allegro Skill语言开发,目标是帮忙封装工具是快速、准确地创建大型...该工具的收益是节省了封装工程师创建封装的时间,全自动化减少了封装出错的可能性,同时也节省了硬件工程师复查封装的时间

    封装后一键加域CMD批处理脚本

    同时,结合系统封装技术,可以实现批量、快速地设置新计算机,对于大规模的企业网络环境来说,这种自动化工具是不可或缺的。 总的来说,这个CMD批处理脚本结合了“netdom”工具,提供了一种高效、便捷的方式来管理...

    python selenium封装UI自动化框架.docx

    框架的思想: 解决我们测试过程中的问题:大量的重复步骤,用自动化来实现 1)配置和程序的分离 2)测试数据和程序的分离 3)不懂编程的人员可以方便使用:使用的...6)框架中不要有重复的代码,实现高度的封装和复用

    Allegro封装自动生成

    5. 参数化设计:为了提高效率,Allegro支持参数化封装设计。通过定义参数,可以快速创建一系列相似的封装,只需要更改几个关键参数即可。 6. 设计规则检查(DRC):在封装完成后,需要进行DRC检查,确保封装符合...

    封装系统,自动删除c:\drivers文件夹

    封装系统,自动删除c:\drivers文件夹.可将此文件放在除SYSPREP文件夹以外的任何地方,在封装工具中首次进系统运行此文件,就能删除c:\drivers文件夹,完成后自动删除自身,所以不用再进行删除此文件的步骤.

    系统封装首席执行官SC封装2.0+工具

    1. **自动化安装**:SC封装2.0能够自动执行系统的预配置工作,如驱动安装、软件部署、系统优化等,大大减少了手动操作的时间和出错率。 2. **定制化设置**:用户可以根据自己的需求,定制封装后的系统包含的应用...

    半导体全自动封装设备的参数存储及调用方法.pdf

    半导体全自动封装设备的参数存储及调用方法 半导体制造工艺与设备中,半导体全自动封装设备的参数存储及调用方法是一个关键技术问题。本文介绍了半导体全自动封装设备的参数分类、参数管理、参数显示、参数下载、...

    c++封装好的支持Http/https类,包含dll/lib

    本主题聚焦于一个C++封装好的类库,它支持HTTP和HTTPS协议,能够实现GET和POST请求,同时具备文件的下载和上传功能。 标题中的"cpp封装好的支持Http/https类"意味着这个类库是用C++编写的,并且已经完成了对HTTP和...

    最新运营级一键IOS免签分发系统源码下载 带绿标+支持在线封装app.zip

    最新运营级一键IOS免签分发系统源码下载 带绿标+支持在线封装app 【运营版】的在线IOS免签封包分发平台,一键IOS免签,支持在线 封装app的分发系统源码,所有功能可进行二次开发, 基于目前主流的分发平台系统二开而...

Global site tag (gtag.js) - Google Analytics