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);
}
}
分享到:
相关推荐
在"labview自动对焦实现"这个项目中,我们聚焦于利用LabVIEW 2019来构建一个自动对焦系统,该系统能够调整相机的焦距以达到最佳的图像清晰度。以下是对每个文件的详细解释: 1. **视觉-自动对焦.lvclass**:这是一...
### OV5640自动对焦摄像头用户手册关键知识点解析 #### 一、产品概述 OV5640是一款采用1/4英寸彩色CMOS QSXGA(5百万像素)图像传感器的产品,集成了OmniBSI™技术,旨在提供高清晰度的成像效果。该传感器特别适用...
### 摄像头自动对焦马达芯片DW9714数据手册解析 #### 一、概述 本文档旨在详细介绍DW9714这款10位分辨率的VCM(Voice Coil Motor)驱动集成电路(IC),它具备I²C接口,并专为摄像头自动对焦系统设计。该芯片支持...
【安森美半导体的LC898214XC自动对焦控制器】 安森美半导体在2014年7月17日发布了一款专为智能手机相机模块设计的自动对焦控制器——LC898214XC。这款控制器是针对日益增长的对手机相机功能提升的需求,特别是对...
标题提及的安捷伦科技为数码相机推出的自动对焦辅助LED闪光灯,是显示和光电技术领域的一个创新。这项技术的出现,旨在解决数码相机在弱光环境下的对焦难题,提升拍摄体验和照片质量。 首先,我们来了解下这款ASMT-...
此外,自动安装器还可能支持静默安装模式,即在后台运行且不显示任何用户界面,进一步简化流程。 “可用于系统封装”表明这个自动安装器适用于创建预装有各种软件的操作系统镜像。系统封装是将一个已经配置好的系统...
据称这是目前市场上亮度、封装尺寸的自动对焦LED,在20mA时的标准输出为18堪(candela),尺寸为4.8×4.8mm。 传统的相机通常使用红外线二极管(IR LED)作为弱光环境下的自动对焦光源,因为只有IR LED才能提供这类...
OV5640自动对焦摄像头应用笔记(MIPI接口)
描述中提到的Avago ASMT-FG10自动对焦辅助闪光用LED,尺寸小巧,约为铅笔头橡皮擦的大小,具有业界最高的亮度和最紧凑的封装。它为数码相机设计工程师提供了一种简便的安装方式,能够帮助那些需要在暗环境中实现精确...
2. **自动调整行高**:对于行高的自动调整,封装可能采用了类似的方法,根据单元格内容的高度进行调整。这可能涉及到设置行内元素(如QTableWidgetItem)的字体、字号等因素,以适应不同内容的行高。 3. **用户交互...
在这个最新的FPM(封装自动生成工具)版本中,Cadence进一步提升了封装设计的自动化程度,使得工程师们能够更快速、更精确地创建和管理封装库。 封装在电子设计中扮演着至关重要的角色,它是连接物理世界和电路板...
综上所述,Avago的这款高亮度绿光自动对焦辅助闪光LED不仅提升了数码相机在低光环境下的对焦能力,还通过紧凑的封装和高效的光学设计降低了制造成本,提高了产品的整体性能。这一创新技术对于光电显示领域和数码相机...
标题提及的安捷伦科技有限公司推出的ASMT-FJ10是一款专为数码相机设计的小体积自动对焦辅助LED闪光灯,旨在改善弱光环境下的摄影体验。这款LED具有极高的亮度,是市场上亮度最高的自动对焦LED之一。在20毫安的电流下...
同时,结合系统封装技术,可以实现批量、快速地设置新计算机,对于大规模的企业网络环境来说,这种自动化工具是不可或缺的。 总的来说,这个CMD批处理脚本结合了“netdom”工具,提供了一种高效、便捷的方式来管理...
框架的思想: 解决我们测试过程中的问题:大量的重复步骤,用自动化来实现 1)配置和程序的分离 2)测试数据和程序的分离 3)不懂编程的人员可以方便使用:使用的...6)框架中不要有重复的代码,实现高度的封装和复用
某站8000元APP封装系统源码app误报毒app可上传+自动实现5分钟随机更换包名和签名+视频安装教程 2022-07-10 永久尊享 55 推广 PS 本源码提供给大家学习研究借鉴美工之用,请勿用于商业和非法用途,无任何技术支持! ...
本工具基于Cadence公司的Allegro Skill语言开发,目标是帮忙封装工具是快速、准确地创建大型...该工具的收益是节省了封装工程师创建封装的时间,全自动化减少了封装出错的可能性,同时也节省了硬件工程师复查封装的时间
封装系统,自动删除c:\drivers文件夹.可将此文件放在除SYSPREP文件夹以外的任何地方,在封装工具中首次进系统运行此文件,就能删除c:\drivers文件夹,完成后自动删除自身,所以不用再进行删除此文件的步骤.