相机图像处理

时间:2012-04-14 07:20:09

标签: java image image-processing

基本上我有一个相机芯片(相机模块:C3038,使用OmniVision的CMOS图像传感器OV6630)通过RS232链接连接到PC。我想在这种格式的Java程序中读取图像数据(根据相机规范):

数据格式 - YCrCb 4:2:2,GRB 4:2:2,RGB原始数据

有关如何操作的任何提示?

我的实施:

import gnu.io.CommPortIdentifier;
import gnu.io.PortInUseException;
import gnu.io.SerialPort;
import gnu.io.SerialPortEvent;
import gnu.io.SerialPortEventListener;
import gnu.io.UnsupportedCommOperationException;

import java.awt.*;
import java.awt.image.*;
import java.io.*;
import java.util.*;
import javax.swing.*;
import javax.imageio.*;

public class SimpleRead1 implements Runnable, SerialPortEventListener {
static CommPortIdentifier portId;
static Enumeration portList;

InputStream inputStream;
SerialPort serialPort;
Thread readThread;
byte [] readBuffer;
static byte [] storeBuffer;

public SimpleRead1() {
    try {
        serialPort = (SerialPort) portId.open("SimpleReadApp", 2000);
    }catch (PortInUseException e) {System.out.println(e);}

    try {
        inputStream = serialPort.getInputStream();
    }catch (IOException e) {System.out.println(e);}

    try {
        serialPort.addEventListener(this);
    } catch (TooManyListenersException e) {System.out.println(e);}

    serialPort.notifyOnDataAvailable(true);

    try {
        serialPort.setSerialPortParams(9600,
            SerialPort.DATABITS_8,
            SerialPort.STOPBITS_1,
            SerialPort.PARITY_NONE);
    } catch (UnsupportedCommOperationException e) {System.out.println(e);}

    readThread = new Thread(this);
    readThread.start();
}

public void run() {
    try {
        Thread.sleep(20000);
    } catch (InterruptedException e) {System.out.println(e);}
}

@Override
public void serialEvent(SerialPortEvent event){
    switch(event.getEventType()) {
    case SerialPortEvent.BI:
    case SerialPortEvent.OE:
    case SerialPortEvent.FE:
    case SerialPortEvent.PE:
    case SerialPortEvent.CD:
    case SerialPortEvent.CTS:
    case SerialPortEvent.DSR:
    case SerialPortEvent.RI:
    case SerialPortEvent.OUTPUT_BUFFER_EMPTY:
        break;
    case SerialPortEvent.DATA_AVAILABLE:
        readBuffer = new byte[Integer.MAX_VALUE];

        try {
            while (inputStream.available() > 0) {

                int numBytes = inputStream.read(readBuffer);
                System.out.print(new String(readBuffer));
            }
           } catch (IOException e) {e.printStackTrace();}

        InputStream in = new ByteArrayInputStream(readBuffer);
        BufferedImage image = null;

        try {
            image = ImageIO.read(in);
        } catch (IOException e) {e.printStackTrace();}

        //GUI for displaying image
        ImageIcon imageIcon = new ImageIcon(image);
        JLabel label = new JLabel();
        label.setIcon(imageIcon);
        JFrame frame = new JFrame("image display");
        frame.getContentPane().add(label,BorderLayout.CENTER);
        frame.pack();
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);                       
        break;
    }
}

public static void main(String[] args) throws Exception {
    portList = CommPortIdentifier.getPortIdentifiers();

    while (portList.hasMoreElements()) {
        portId = (CommPortIdentifier) portList.nextElement();
        if (portId.getPortType() == CommPortIdentifier.PORT_SERIAL) {
             if (portId.getName().equals("COM7")) {
        //                if (portId.getName().equals("/dev/term/a")) {
                SimpleRead1 reader = new SimpleRead1();
           }
        }
    }
}
}

2 个答案:

答案 0 :(得分:3)

不幸的是,Java本身不支持串行端口 - 您需要一个外部库。我建议你看看the RXTX library,这些日子似乎有点像事实上的标准。

视频传感器芯片通常具有相对简单的通信接口(即没有桥接芯片)。通常它归结为设置图像参数,启动实际图像数据传输,然后将多个字节读入缓冲区。有时可能涉及图像数据的开始或结束签名,但这就是它。

如果您手边有所有文档,那么它应该很难 - 我偶尔在C中做过类似的事情而没有任何文档... < / p>

修改

将图像读取到字节数组后,您可以使用the BufferedImage class使其可用于Java。也就是说,我无法确定Java是否支持除ARGB变体之外的任何内容 - 如果你想使用非自己(或者通过第三方库,我可能必须)进行颜色空间转换 - 传感器中的-RGB模式。

答案 1 :(得分:0)

这个问题有点广泛,所以我不知道你有多少经验,但对于RS-232,你需要使用SerialPort。 Here是一个简单的例子,可以帮助您从COM端口开始阅读。