中国IT动力,最新最全的IT技术教程
最新100篇 | 推荐100篇 | 专题100篇 | 排行榜 | 搜索 | 在线API文档
首 页 | 程序开发 | 操作系统 | 软件应用 | 图形图象 | 网络应用 | 精文荟萃 | 教育认证 | 硬件维护 | 未整理篇 | 站长教程
ASP JS PHP工程 ASP.NET 网站建设 UML J2EESUN .NET VC VB VFP 网络维护 数据库 DB2 SQL2000 Oracle Mysql
服务器 Win2000 Office C DreamWeaver FireWorks Flash PhotoShop 上网宝典 CorelDraw 协议大全 网络安全 微软认证
硬件维护  CPU  主板  硬盘  内存  显卡  显示器  键盘鼠标  声卡音箱  打印机  机箱电源  BIOS  网卡  C#  Java  Delphi  vs.net2005
  当前位置:> 程序开发 > 编程语言 > Java > J2SE
利用JMF进行摄像头拍照:)
作者:未知 时间:2005-07-24 21:14 出处:JR 责编:chinaitpower
              摘要:利用JMF进行摄像头拍照:)

我把程序分为两种,有趣的和无趣的,最近做了几个有趣的项目,其中一个,应当就算是摄像头拍照程序了:),用于现场拍照,生成照片,主要用到Java Media Framework(JMF)

首先到SUN下载最新的JMF,然后安装。http://java.sun.com/products/java-media/jmf/index.jsp

然后,说一下需求

1.  用摄像头拍照

2.  在文本框输入文件名

3.  按下拍照按钮,获取摄像头内的图像

4.  在拍下的照片上有一红框截取固定大小的照片。

5.  保存为本地图像为jpg格式,不得压缩画质

 

技术关键,相信也是大家最感兴趣的部分也就是如何让一个摄像头工作,并拍下一张照片了。

利用JMF,代码很简单:

//利用这三个类分别获取摄像头驱动,和获取摄像头内的图像流,获取到的图像流是一个SwingComponent组件类

public static Player player = null;

private CaptureDeviceInfo di = null;

private MediaLocator ml = null;

 

//文档中提供的驱动写法,为何这么写我也不知:)

String str1 = "vfw:Logitech USB Video Camera:0";

        String str2 = "vfw:Microsoft WDM Image Capture (Win32):0";

        di = CaptureDeviceManager.getDevice(str2);

        ml = di.getLocator();

        try

        {

            player = Manager.createRealizedPlayer(ml);

            player.start();

            Component comp;

            if ((comp = player.getVisualComponent()) != null)

            {

                add(comp, BorderLayout.NORTH);

            }

}

        catch (Exception e)

        {

            e.printStackTrace();

        }

 


接下来就是点击拍照,获取摄像头内的当前图像。

代码也是很简单:

private JButton capture;

private Buffer buf = null;

private BufferToImage btoi = null;

private ImagePanel imgpanel = null;

private Image img = null;

private ImagePanel imgpanel = null;

 

JComponent c = (JComponent) e.getSource();

        if (c == capture)//如果按下的是拍照按钮

        {

            FrameGrabbingControl fgc =

                (FrameGrabbingControl) player.getControl(

                    "javax.media.control.FrameGrabbingControl");

            buf = fgc.grabFrame(); // 获取当前祯并存入Buffer

            btoi = new BufferToImage((VideoFormat) buf.getFormat());

            img = btoi.createImage(buf); // show the image    

            imgpanel.setImage(img);

        }

 

保存图像的就不多说了,以下为示例代码

BufferedImage bi = (BufferedImage) createImage(imgWidth, imgHeight);

        Graphics2D g2 = bi.createGraphics();

        g2.drawImage(img, null, null);

 

FileOutputStream out = null;

        try

        {

            out = new FileOutputStream(s);

        }

        catch (java.io.FileNotFoundException io)

        {

            System.out.println("File Not Found");

        }

        JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);

        JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(bi);

        param.setQuality(1f, false);//不压缩图像

        encoder.setJPEGEncodeParam(param);

        try

        {

            encoder.encode(bi);

            out.close();

        }

        catch (java.io.IOException io)

        {

            System.out.println("IOException");

        }

 

已经申请将JWebCam建立为一个开源项目,放到GRO,大家发挥自己的想象力加入自己的代码吧,比如拍摄视频,添加图像处理功能,等等。如果有改的很Cool的,记得发给我看看:)

关闭本页
 
首页 | 投资与合作 | 服务条款 | 隐私政策 | 收藏本站 | 设为首页 | 新用户注册 | 免责声明 | 使用帮助
Copyright ©2005-2008 chinaitpower.com All rights reserved. www.chinaitpower.com 版权所有