java 拍照_Java调用计算机摄像头拍照实现过程解析

本文介绍了如何使用Java REST API来调用计算机的摄像头进行拍照。通过创建一个Spring Boot项目,引入webcam-capture库,实现了相机控制和图片保存功能。用户可以通过访问特定API触发拍照,并将照片保存在指定路径。
摘要由CSDN通过智能技术生成

Java调用计算机摄像头照相(Rest API的页面操作)

本例子使用基于Java rest API的页面操作,方便远程拍照

新建Spring Boot项目

9674f42599c6a23a540b3f1ea6b213a8.png

pop.xml

xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">

4.0.0

org.springframework.boot

spring-boot-starter-parent

2.2.5.RELEASE

me.muphy

recorder

0.0.1-SNAPSHOT

recorder

Demo project for Spring Boot

1.8

org.springframework.boot

spring-boot-starter-web

com.github.sarxos

webcam-capture

0.3.12

org.springframework.boot

spring-boot-starter-test

test

org.junit.vintage

junit-vintage-engine

org.springframework.boot

spring-boot-maven-plugin

server.port=8080

#保存根路径

record.path=E:/workspace/share/

index.html

莫非照相机

CameraController.java

package me.muphy.camera;

import me.muphy.servicce.CameraService;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.web.bind.annotation.GetMapping;

import org.springframework.web.bind.annotation.RestController;

@RestController

public class CameraController {

@Autowired

private CameraService cameraService;

@GetMapping("/tp")

public String takePictures(String[] args) {

String msg = cameraService.takePictures();

return "

" + msg + "
";

}

}

CameraService.java

package me.muphy.servicce;

import com.github.sarxos.webcam.Webcam;

import com.github.sarxos.webcam.WebcamResolution;

import com.github.sarxos.webcam.WebcamUtils;

import org.springframework.beans.factory.annotation.Value;

import org.springframework.stereotype.Service;

import java.io.File;

import java.text.SimpleDateFormat;

import java.util.Date;

@Service

public class CameraService {

@Value("${download.path:E:/workspace/download/}")

private String downloadPath;

public String takePictures() {

Webcam webcam = Webcam.getDefault();

if (webcam == null) {

return "没有找到摄像设备!";

}

String filePath = downloadPath + "/picture/" + new SimpleDateFormat("yyyy-MM-dd").format(new Date());

File path = new File(filePath);

if (!path.exists()) {//如果文件不存在,则创建该目录

path.mkdirs();

}

String time = new SimpleDateFormat("yyyMMdd_HHmmss").format(new Date());

File file = new File(filePath + "/" + time + ".jpg");

webcam.setViewSize(WebcamResolution.VGA.getSize());

WebcamUtils.capture(webcam, file);

return "拍照成功!";

}

}

CameraApplication.java

package me.muphy;

import org.springframework.boot.SpringApplication;

import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication

public class CameraApplication {

public static void main(String[] args) {

SpringApplication.run(CameraApplication.class, args);

}

}

当前电脑没有摄像头,因此是正常的

2fb51282a1b3aa70866ab882d695c361.png

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

首先到sun下载最新的jmf,然后安装。http://java.sun.com/products/java-media/jmf/index.jsp   然后,说一下需求   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"); }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值