Opencv java - 将图像加载到 GUI
2022-09-02 09:52:58
我正在使用Java Opencv-2.4.4和sway 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中,我必须覆盖磁盘上的输出.png并使用磁盘上的新映像更新jLabel。
有没有比这更优雅/更有效的解决方案?是否可以将Mat对象直接绘制或转换为Canvas或图像或任何可打印为摆动图像的东西?