使用JavaCV/OpenCV抓取并存储摄像头图像
http://blog.csdn.net/ljsspace/article/details/6702178

版权声明:本文为博主原创文章,未经博主允许不得转载。
本程序通过JFrame实时显示本机摄像头图像,并将图像存储到一个缓冲区,当用户用鼠标点击JFrame中任何区域时,显示抓取图像的简单动画,同时保存缓冲区的图像到磁盘文件中。点击JFrame关闭按钮可以退出程序。
实现:
- import java.awt.Graphics2D;
- import java.awt.event.ActionEvent;
- import java.awt.event.ActionListener;
- import java.awt.event.MouseAdapter;
- import java.awt.event.MouseEvent;
- import java.awt.image.BufferedImage;
- import java.io.File;
- import java.io.IOException;
- import javax.imageio.ImageIO;
- import javax.swing.Timer;
- import com.googlecode.javacv.CanvasFrame;
- import com.googlecode.javacv.OpenCVFrameGrabber;
- import com.googlecode.javacv.cpp.opencv_core.IplImage;
- import static com.googlecode.javacv.cpp.opencv_core.cvReleaseImage;
- /**
- *
- * Use JavaCV/OpenCV to capture camera images
- *
- * There are two functions in this demo:
- * 1) show real-time camera images
- * 2) capture camera images by mouse-clicking anywhere in the JFrame,
- * the jpg file is saved in a hard-coded path.
- *
- * @author ljs
- * 2011-08-19
- *
- */
- public class CameraCapture {
- public static String savedImageFile = "c:\\tmp\\my.jpg";
- //timer for image capture animation
- static class TimerAction implements ActionListener {
- private Graphics2D g;
- private CanvasFrame canvasFrame;
- private int width,height;
- private int delta=10;
- private int count = 0;
- private Timer timer;
- public void setTimer(Timer timer){
- this.timer = timer;
- }
- public TimerAction(CanvasFrame canvasFrame){
- this.g = (Graphics2D)canvasFrame.getCanvas().getGraphics();
- this.canvasFrame = canvasFrame;
- this.width = canvasFrame.getCanvas().getWidth();
- this.height = canvasFrame.getCanvas().getHeight();
- }
- public void actionPerformed(ActionEvent e) {
- int offset = delta*count;
- if(width-offset>=offset && height-offset >= offset) {
- g.drawRect(offset, offset, width-2*offset, height-2*offset);
- canvasFrame.repaint();
- count++;
- }else{
- //when animation is done, reset count and stop timer.
- timer.stop();
- count = 0;
- }
- }
- }
- public static void main(String[] args) throws Exception {
- //open camera source
- OpenCVFrameGrabber grabber = new OpenCVFrameGrabber(0);
- grabber.start();
- //create a frame for real-time image display
- CanvasFrame canvasFrame = new CanvasFrame("Camera");
- IplImage image = grabber.grab();
- int width = image.width();
- int height = image.height();
- canvasFrame.setCanvasSize(width, height);
- //onscreen buffer for image capture
- final BufferedImage bImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
- Graphics2D bGraphics = bImage.createGraphics();
- //animation timer
- TimerAction timerAction = new TimerAction(canvasFrame);
- final Timer timer=new Timer(10, timerAction);
- timerAction.setTimer(timer);
- //click the frame to capture an image
- canvasFrame.getCanvas().addMouseListener(new MouseAdapter(){
- public void mouseClicked(MouseEvent e){
- timer.start(); //start animation
- try {
- ImageIO.write(bImage, "jpg", new File(savedImageFile));
- } catch (IOException e1) {
- e1.printStackTrace();
- }
- }
- });
- //real-time image display
- while(canvasFrame.isVisible() && (image=grabber.grab()) != null){
- if(!timer.isRunning()) { //when animation is on, pause real-time display
- canvasFrame.showImage(image);
- //draw the onscreen image simutaneously
- bGraphics.drawImage(image.getBufferedImage(),null,0,0);
- }
- }
- //release resources
- cvReleaseImage(image);
- grabber.stop();
- canvasFrame.dispose();
- }
- }
使用JavaCV/OpenCV抓取并存储摄像头图像的更多相关文章
- 摄像头脸部识别 (1)opencv 抓取视频数据并保存
摄像头脸部识别 (1)opencv 抓取视频数据并保存 基于python 和 opencv 3.4.0 (兼容 opencv 2.X 参考注释),详细如代码 import numpy as np im ...
- 在python3下使用OpenCV 抓取摄像头图像并实时显示3色直方图
以下代码为在Python3环境下利用OpenCV 抓取摄像头的实时图像, 通过OpenCV的 calHist函数计算直方图, 并显示在3个不同窗口中. import cv2 import numpy ...
- 【Python入门只需20分钟】从安装到数据抓取、存储原来这么简单
基于大众对Python的大肆吹捧和赞赏,作为一名Java从业人员,我本着批判与好奇的心态买了本python方面的书<毫无障碍学Python>.仅仅看了书前面一小部分的我......决定做一 ...
- 在python3下使用OpenCV 抓取摄像头图像提取蓝色
工作中需要对摄像头进行调试, Python平台大大提高调试效率. 从网找到段代码, 可以从摄像头图像中抠出蓝色. import cv2 import numpy as np cap = cv2.Vi ...
- OSX下面用ffmpeg抓取桌面以及摄像头推流进行直播
参考博客 http://blog.chinaunix.net/uid-11344913-id-4665455.html 在osx系统下通过ffmpeg查看设备 ffmpeg -f avfoundati ...
- Python 抓取数据存储到Redis中
redis是一个key-value存储结构.和Memcached类似,它支持存储的value类型相对更多,包括string(字符串).list(链表).set(集合).zset(sorted set ...
- 用ADB 抓取和存储APP日志方法
前置条件:电脑已经安装好adb (一) 进入adb目录下连接手机,检测出手机 CD 到SDK的platform-tools (二)adb logcat-c 清除日志 (三)adb logcat ...
- Python 抓取数据存储到Mysql中
# -*- coding: utf-8 -*- import os,sys import requests import bs4 import pymysql#import MySQLdb #连接MY ...
- Zeta--S3 Linux抓取一帧YUV图像后使用硬件编码器编码成H.264
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <getopt.h&g ...
随机推荐
- 如何在Eclipse和MyEclipse中安装SVN
在安装目录下,找到dropins文件夹将svn文件复制进去.
- 12C dbca silent
dbca needs a template file to create a database. These template can be found in $ORACLE_HOME/assista ...
- SQL Server删除表信息的三种方法
1.使用DELETE实现SQL Server删除表信息 (1)删除表中的全部信息 USE student GO DELETE student --不加where条件,删除表中的所有记录 go ...
- MySQL python组件安装
可使用pip进行安装 pip install MySQL-python 如出现以下错误 _mysql.c::: 错误:my_config.h:没有那个文件或目录 _mysql.c::: 错误:mysq ...
- Struts2--课程笔记3
获取ServletAPI: 第一种方式: //在request域中放入属性req,暂且认为getContext()获取的是request域空间,但实际不是 ActionContext.g ...
- jsp之用户自定义标签
创建一个类,引入外部jsp-api.jar包(在tomcat 下lib包里有),这个类继承SimpleTagSupport 重写doTag()方法. jspprojec包下的helloTag类: pu ...
- 您可能无法使用服务器管理器,如果两个线程同时访问 IIS 管理 IIS 的修补程序
http://support.microsoft.com/kb/946517 如果多线程操作 win2003 iis 失败, 打上这个补丁就好了
- hdu_5805_NanoApe Loves Sequence(xjb搞)
题目链接:hdu_5805_NanoApe Loves Sequence 题意: 给你n个数,现在要删一个数,删每个数的概率是一样的,现在问你删一个值后的相邻数绝对值最大差的期望是多少,因为担心精度误 ...
- hdu_5707_Combine String("巴卡斯杯" 中国大学生程序设计竞赛 - 女生专场)
题目连接:http://acm.hdu.edu.cn/showproblem.php?pid=5707 题意:给你三个字符串 a,b,c,问你 c能否拆成a,b,a,b串的每一个字符在c中不能变 题解 ...
- HDU2535:Vote
Problem Description 美国大选是按各州的投票结果来确定最终的结果的,如果得到超过一半的州的支持就可以当选,而每个州的投票结果又是由该州选民投票产生的,如果某个州超过一半的选民支持希拉 ...