A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 而今从头越2012 中级黑马   /  2012-12-30 13:24  /  1297 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

java实现镜头的启动和关闭,获取数据,怎么用java实现的代码,比如,包括驱动和USB接口的实现,数据的处理?
请高手给出答案,谢谢啦!

2 个回复

倒序浏览
是 实现摄像头拍照么?

我收藏过一片技术, 你看看:


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

  然后,说一下需求

  1. 用摄像头拍照

  2. 在文本框输入文件名

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

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

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

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

  利用JMF,代码很简单:
  1. //利用这三个类分别获取摄像头驱动,和获取摄像头内的图像流,获取到的图像流是一个Swing的Component组件类

  2. public static Player player = null;
  3. private CaptureDeviceInfo di = null;
  4. private MediaLocator ml = null;

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

  6. String str1 = "vfw:Logitech USB Video Camera:0";
  7. String str2 = "vfw:Microsoft WDM Image Capture (Win32):0";
  8. di = CaptureDeviceManager.getDevice(str2);
  9. ml = di.getLocator();
  10. try
  11. {
  12.  player = Manager.createRealizedPlayer(ml);
  13.  player.start();
  14.  Component comp;
  15.  if ((comp = player.getVisualComponent()) != null)
  16.  {
  17.   add(comp, BorderLayout.NORTH);
  18.  }
  19. }
  20. catch (Exception e)
  21. {
  22.  e.printStackTrace();
  23. }
复制代码
接下来就是点击拍照,获取摄像头内的当前图像。

  代码也是很简单:
  1. private JButton capture;
  2. private Buffer buf = null;
  3. private BufferToImage btoi = null;
  4. private ImagePanel imgpanel = null;
  5. private Image img = null;
  6. private ImagePanel imgpanel = null;

  7. JComponent c = (JComponent) e.getSource();
  8. if (c == capture)//如果按下的是拍照按钮
  9. {
  10.  FrameGrabbingControl fgc =(FrameGrabbingControl)  player.getControl("javax.media.control.FrameGrabbingControl");
  11.  buf = fgc.grabFrame(); // 获取当前祯并存入Buffer类
  12.  btoi = new BufferToImage((VideoFormat) buf.getFormat());
  13.  img = btoi.createImage(buf); // show the image
  14.  imgpanel.setImage(img);
  15. }
复制代码
保存图像的就不多说了,以下为示例代码
  1. BufferedImage bi = (BufferedImage) createImage(imgWidth, imgHeight);
  2. Graphics2D g2 = bi.createGraphics();
  3. g2.drawImage(img, null, null);
  4. FileOutputStream out = null;
  5. try
  6. {
  7.  out = new FileOutputStream(s);
  8. }
  9. catch (java.io.FileNotFoundException io)
  10. {
  11.  System.out.println("File Not Found");
  12. }

  13. JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
  14. JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(bi);
  15. param.setQuality(1f, false);//不压缩图像
  16. encoder.setJPEGEncodeParam(param);
  17. try
  18. {
  19.  encoder.encode(bi);
  20.  out.close();
  21. }
  22. catch (java.io.IOException io)
  23. {
  24.  System.out.println("IOException");
  25. }
复制代码

评分

参与人数 1技术分 +1 收起 理由
崔政 + 1

查看全部评分

回复 使用道具 举报
楼上是两位高人,都开始研究这么高深的问题了。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马