- 1、本文档共6页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
利用JMF进行摄像头拍照
利用JMF进行摄像头拍照:)
疯狂代码 http://CrazyC/ ĵ http:/CrazyC/Java/Article6991.html
我把分为两种有趣和无趣最近做了几个有趣项目其中个应当就算是摄像头拍照了:)用于现场拍照生成照片主要
用到Java Media Framework(JMF)
首先到SUN下载最新JMF然后安装/products/java-
media/jmf/index.jsp\/products/java-media/jmf/index.jsp
然后说下需求
1. 用摄像头拍照
2. 在文本框输入文件名
3. 按下拍照按钮获取摄像头内图像
4. 在拍下照片上有红框截取固定大小照片
5. 保存为本地图像为jpg 格式不得压缩画质
技术关键相信也是大家最感兴趣部分也就是如何让个摄像头工作并拍下张照片了
利用JMF代码很简单:
//利用这 3个类分别获取摄像头驱动和获取摄像头内图像流获取到图像流是个SwingComponent组件类
public 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;
((comp = player.getVisualComponent) != null)
{
add(comp, BorderLayout.NORTH);
}
}
catch (Exception e)
{
e.prStackTrace;
}
接下来就是点击拍照获取摄像头内当前图像
代码也是很简单
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;
(c capture)//如果按下是拍照按钮
{
FrameGrabbingControl fgc =
(FrameGrabbingControl) player.getControl(
\javax.media.control.FrameGrabbingControl\);
buf = fgc.grabFrame; // 获取当前祯并存入
Buffer类
btoi = BufferToImage((VideoFormat) buf.getFormat);
img = btoi.createImage(buf); // show the image
imgpanel.Image(img);
}
保存图像就不多说了以下为举例代码
BufferedImage bi = (BufferedImage) createImage(imgWidth, imgHeight);
Graphics2D
文档评论(0)