求助!Java web 调用本地摄像头100分

云淡风起 2013-04-27 04:31:45
是这样,我想在一个网页的登录界面调用摄像头,然后进行人脸识别.我想问的是如何利用Java技术来调用本地摄像头呢?在一个jsp页面上如何实现呢?我的QQ1390729063,例如在eclipse下需要什么jar包.请详细说明.如有代码,感激不尽!
...全文
727 4 打赏 收藏 转发到动态 举报
AI 作业
写回复
用AI写文章
4 条回复
切换为时间正序
请发表友善的回复…
发表回复
peihexian 2015-09-21
  • 打赏
  • 举报
回复
云淡风起 2013-04-28
  • 打赏
  • 举报
回复
引用 1 楼 maco_wang 的回复:
参考; http://blog.csdn.net/china_lzn/article/details/7553552
额,问题已经解决了,直接使用html5 就OK了.不管怎么说,非常感谢你..
叶子 2013-04-27
  • 打赏
  • 举报
回复

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

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");
}
叶子 2013-04-27
  • 打赏
  • 举报
回复

87,997

社区成员

发帖
与我相关
我的任务
社区描述
Web 开发 JavaScript
社区管理员
  • JavaScript
  • 无·法
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧