您的位置:

java操作摄像头拍照的例子(java 摄像头视频处理)

本文目录一览:

java 怎么调用摄像头

正好我最近在弄JAVA摄像头东西

JAVA加载摄像头需要用JMF框架,这个LZ可以去SUN的主页下到,具体的配置搜下就有了

我这个是在用JFrame的

加载的代码是这样的:

public JPanel contentPane = new JPanel();

public void getvideo(){

CaptureDeviceInfo di = null;

MediaLocator ml = null;

Player player = null;

Vector deviceList = CaptureDeviceManager.getDeviceList(null);

if(deviceList!=null)

{

for(int i=0;ideviceList.size();i++)

{

di=(CaptureDeviceInfo)deviceList.elementAt(i);

if(di.getName().startsWith("vfw:")){

ml=di.getLocator();

}

}

}

else{

System.err.print("No Capture Device");

System.exit(-1);

}

try {

player = Manager.createRealizedPlayer(ml);

player.start();

Component comp;

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

{ comp.setBounds(new Rectangle(0, 40,320, 240));

contentPane.add(comp,BorderLayout.NORTH);

}

} catch (NoPlayerException e) {

e.printStackTrace();

} catch (CannotRealizeException e) {

e.printStackTrace();

} catch (IOException e) {

e.printStackTrace();

}

}

再把contentPane添加到JFrame里面,这个就可以在一个JFrame的框架用摄像头了

还有,要注意个事,就是第一次使用摄像头的话,要用JMF带的程序JMF Registry选到capture Devices中注册下,不然是找不到驱动的

如何使用java启用电脑的摄像头摄相拍照

一般的USB摄像头,使用JMF可以读取相片、视频片段~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

JAVA里面有什么方法调用摄像头拍照的

利用jmf,代码很简单:

//利用这三个类分别获取摄像头驱动,和获取摄像头内的图像流,获取到的图像流是一个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");

}

如何使用java调用摄像头

正好我最近在弄JAVA摄像头东西

JAVA加载摄像头需要用JMF框架,这个LZ可以去SUN的主页下到,具体的配置搜下就有了

我这个是在用JFrame的

加载的代码是这样的:

public JPanel contentPane = new JPanel();

public void getvideo(){

CaptureDeviceInfo di = null;

MediaLocator ml = null;

Player player = null;

Vector deviceList = CaptureDeviceManager.getDeviceList(null);

if(deviceList!=null)

{

for(int i=0;ideviceList.size();i++)

{

di=(CaptureDeviceInfo)deviceList.elementAt(i);

if(di.getName().startsWith("vfw:")){

ml=di.getLocator();

}

}

}

else{

System.err.print("No Capture Device");

System.exit(-1);

}

try {

player = Manager.createRealizedPlayer(ml);

player.start();

Component comp;

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

{ comp.setBounds(new Rectangle(0, 40,320, 240));

contentPane.add(comp,BorderLayout.NORTH);

}

} catch (NoPlayerException e) {

e.printStackTrace();

} catch (CannotRealizeException e) {

e.printStackTrace();

} catch (IOException e) {

e.printStackTrace();

}

}

再把contentPane添加到JFrame里面,这个就可以在一个JFrame的框架用摄像头了

还有,要注意个事,就是第一次使用摄像头的话,要用JMF带的程序JMF Registry选到capture Devices中注册下,不然是找不到驱动的

JAVA代码如何调用客户端摄像头

首先到sun下载最新的jmf,然后安装。

然后,说一下需求

1. 用摄像头拍照

2. 在文本框输入文件名

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

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

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

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

利用jmf,代码很简单:

//利用这三个类分别获取摄像头驱动,和获取摄像头内的图像流,获取到的图像流是一个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 ");

}

把.jar文件导入。下载了jmf后需要安装,安装后你的那个jmf目录下就会有一个lib文件夹里面有.jar文件,然后打开eclipse,右键选择你的工程-〉属性-〉java build path- library-〉add external jars 找到你的jmf目录下lib的那个文件夹然后选中那些文件导入就ok了。

然后利用工具提供的导入文件帮助,一个一个导就OK了

java操作摄像头拍照的例子(java 摄像头视频处理)

2022-11-11
java调用摄像头实例,java 摄像头视频处理

2022-11-16
java摄像头,java摄像头抓拍

2022-12-02
java摄像头,Java摄像头识别扑克源码

2023-01-04
python如何设置摄像头焦距(python控制摄像头拍照)

2022-11-11
java读取摄像头并显示(java打开手机摄像头)

2022-11-10
Vue中调用摄像头拍照

2023-05-17
js摄像头拍照代码(js摄像头拍照代码大全)

本文目录一览: 1、JS 能不能调用摄像头并拍照 2、怎么用html5或js调用手机的摄像头拍照上传以及调用手机相册选取照片 3、能不能通过js代码打开摄像头 JS 能不能调用摄像头并拍照 可以调用,

2023-12-08
如何优化网页摄像头的拍摄效果?

2023-05-16
js调用摄像头代码是什么,前端js调用摄像头拍照

2022-11-23
JS调用摄像头开发指南

2023-05-19
ov5640摄像头模块的技术参数及应用案例

2023-05-20
安卓摄像头权限:保证应用的拍照和录像功能顺利运行

一、安卓摄像头解析 现代移动设备都配备了摄像头,而安卓设备的摄像头在手机应用中是一个非常常见的功能。安卓设备可以有多个摄像头,包括前置和后置摄像头,这些摄像头可以用来进行拍照和录像等操作。 二、安卓摄

2023-12-08
Android应用调用摄像头实现照片拍摄功能

一、前言 Android应用的摄像头功能是比较基础的功能之一,实现照片的拍摄功能可以满足用户在应用中的需求,例如社交类应用需要上传用户头像,或者是在线购物类应用需要拍摄商品照片等。本文将详细介绍如何在

2023-12-08
小程序调用摄像头详解

2023-05-23
C#调用摄像头

2023-05-22
网页调用摄像头详解

2023-05-16
Vue中调用摄像头详解

2023-05-20
python摄像头文档介绍内容,python 获取摄像头图像

2022-11-22
浏览器调用摄像头

2023-05-19