使用Java opencv连接DVR摄像机

时间:2015-04-18 07:04:54

标签: java opencv networking image-processing dvr

我正在使用java& amp ;;开发cctv监控系统。我想连接dvr相机(http://admin@192.168.1.101/cgi-bin/view.cgi?chn=1&u=admin&p=%22)。我有一些建议使用opencv库。我从笔记本电脑摄像头获得了视频流,但是当我尝试使用dvr ip时,我无法获得视频流。我在堆栈溢出时发现了类似的问题,但它没有任何答案&并不能完全满足我的需求。

我使用了以下代码

package opencvdemo;

import java.awt.Graphics;
import java.awt.image.BufferedImage;
import java.awt.image.DataBufferByte;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JButton;

import org.opencv.core.Core;
import org.opencv.core.Mat;
import org.opencv.highgui.Highgui;
import org.opencv.highgui.VideoCapture;
import org.opencv.imgproc.Imgproc;

public class VideoStream
{
    public static void main(String args[]) throws InterruptedException
    {
        System.out.println("opencv start..");

        // Load native library
        System.loadLibrary(Core.NATIVE_LIBRARY_NAME);

        VideoCapture camView=new VideoCapture();

        camView.open(0);

        if(!camView.isOpened())
        {
            System.out.println("Camera Error..");
        }
        else
        {
            System.out.println("Camera successfully opened");
        }

        videoCamera cam=new videoCamera(camView);

        //Initialize swing components
        JFrame frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);  
        frame.add(cam);
        frame.setSize(1080,720);  
        frame.setVisible(true);

        while(camView.isOpened())
        {
            cam.repaint();
        }
    }        
}

@SuppressWarnings("serial")
        class videoCamera extends JPanel
{
    VideoCapture camera; 

    public videoCamera(VideoCapture cam) 
    {
        camera  = cam; 
    }

    public BufferedImage Mat2BufferedImage(Mat m)
    {
        int type = BufferedImage.TYPE_BYTE_GRAY;
        if (m.channels() > 1)
        {
            type = BufferedImage.TYPE_3BYTE_BGR;
        }
        int bufferSize = m.channels() * m.cols() * m.rows();
        byte[] b = new byte[bufferSize];
        m.get(0, 0, b); // get all the pixels
        BufferedImage img = new BufferedImage(m.cols(), m.rows(), type);
        final byte[] targetPixels = ((DataBufferByte) img.getRaster().getDataBuffer()).getData();
        System.arraycopy(b, 0, targetPixels, 0, b.length);
        return img;
    }

    public void paintComponent(Graphics g)
    {
        super.paintComponent(g);
        Mat mat = new Mat();

        if( camera.read(mat))
        {
            System.out.print("IMAGE");
        }

        BufferedImage image = Mat2BufferedImage(mat);

        g.drawImage(image,10,10,image.getWidth(),image.getHeight(), null);
    }
    public Mat turnGray( Mat img)
    {
        Mat mat1 = new Mat();
        Imgproc.cvtColor(img, mat1, Imgproc.COLOR_RGB2GRAY);
        return mat1;
    }
    public Mat threash(Mat img)
    {
        Mat threshed = new Mat();
        int SENSITIVITY_VALUE = 100;
        Imgproc.threshold(img, threshed, SENSITIVITY_VALUE,255,Imgproc.THRESH_BINARY);
        return threshed;
    }
}

当我在camView.open()中给DV的摄像头ip输入0时,它不起作用 任何人都可以建议我解决这个问题的解决方案。

1 个答案:

答案 0 :(得分:0)

Tushar我建议您在项目中添加VLCj库并运行它...它可能对您有所帮助。和DVR也将通过它连接。

https://github.com/caprica/vlcj

此致 Fardeen Saiyyed