20

我正在使用 Java Opencv-2.4.4 和 swing GUI 开发应用程序。问题是我找不到任何解决方案,它显示了如何将处理后的图像(保存在Mat对象中)打印到 java swing GUI 的有效方法。此刻,我正在使用这个笨拙的解决方案:

javax.swing.JLabel outputImage;
outputImage.setIcon(new javax.swing.ImageIcon("/home/username/Output.png"));

private void sliderStateChanged(javax.swing.event.ChangeEvent evt) { 
       .
       .
  Mat canny; // Here is saved what I want to plot
  String filename = "/home/username/Output.png";
  Highgui.imwrite(filename, canny);  // write to disk
  outputImage.setIcon(new ImageIcon(ImageIO.read(new File(filename)))); //update Icon
       .
       .
}

当用户更改某些值、输入等时,在 GUI 中我必须覆盖磁盘上的Output.png并使用磁盘中的新图像更新 jLabel。

有没有更优雅/有效的解决方案?是否可以将Mat对象直接绘制或转换为CanvasImage或任何可在 swing 中打印为图像的东西?

4

4 回答 4

15

是的,有更优雅的方式来做到这一点。您可以将 Mat 转换为 BufferedImage 类型,然后使用 swing 加载它。将其转换为缓冲图像的代码是:

    Mat image_tmp = your image

    MatOfByte matOfByte = new MatOfByte();

    Highgui.imencode(".jpg", image_tmp, matOfByte); 

    byte[] byteArray = matOfByte.toArray();
    BufferedImage bufImage = null;

    try {

        InputStream in = new ByteArrayInputStream(byteArray);
        bufImage = ImageIO.read(in);
    } catch (Exception e) {
        e.printStackTrace();
    }

然后你可以在你的 GUI 对象中绘制它:

g.drawImage(bufImage , 0, 0, null);

其中 g 是 Graphics 类型

希望这可以帮助。

于 2013-03-29T11:30:20.893 回答
12

jpeg 编码很有趣,但有几个问题:

  • 它不是无损格式,压缩时会丢失图像数据
  • 这需要相当长的时间(大约比下面建议的时间长 6 到 10 倍)
public Image toBufferedImage(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 image = new BufferedImage(m.cols(),m.rows(), type);
      final byte[] targetPixels = ((DataBufferByte) image.getRaster().getDataBuffer()).getData();
      System.arraycopy(b, 0, targetPixels, 0, b.length);  
      return image;

  }
于 2013-12-31T02:30:15.867 回答
2

Imshow()这是Java OpenCV 中等效的现成解决方案,使用简单。API 将如下所示:

Imshow im = new Imshow("Title");
im.showImage(matimage);

访问这里https://github.com/master-atul/ImShow-Java-OpenCV

这是一个更好的解决方案,因为您不需要将图像存储到磁盘中并再次读取。因此,它减少了从磁盘读取的开销,因此速度更快。

于 2014-02-18T21:49:42.133 回答
1

使用@andriy 的答案。我想出了这个解决方案。我使用 JFrame 而不是 Graphics。希望这可以帮助。

public void imshow(Mat src){
    BufferedImage bufImage = null;
    try {
        MatOfByte matOfByte = new MatOfByte();
        Highgui.imencode(".jpg", src, matOfByte); 
        byte[] byteArray = matOfByte.toArray();
        InputStream in = new ByteArrayInputStream(byteArray);
        bufImage = ImageIO.read(in);

        JFrame frame = new JFrame("Image");
        frame.getContentPane().setLayout(new FlowLayout());
        frame.getContentPane().add(new JLabel(new ImageIcon(bufImage)));
        frame.pack();
        frame.setVisible(true);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    } catch (Exception e) {
        e.printStackTrace();
    }
}
于 2016-06-22T21:13:06.390 回答