Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Java

จะแสดงวัตถุ OpenCV Mat โดยใช้ Swings ได้อย่างไร


คลาส ImageIcon คือการใช้งานอินเทอร์เฟซไอคอนที่วาดไอคอนจากรูปภาพ คุณสามารถแสดงรูปภาพบนหน้าต่าง Swing โดยใช้คลาสนี้ ตัวสร้างของคลาสนี้ยอมรับวัตถุ BufferedImage เป็นพารามิเตอร์

ดังนั้นเพื่อแสดงภาพ OpenCV ที่เก็บไว้ในวัตถุ Mat โดยใช้หน้าต่าง Swing คุณต้องแปลงเป็นวัตถุ BufferedImage และส่งผ่านเป็นพารามิเตอร์ไปยังวิธี ImageIcon

ตัวอย่าง

import java.awt.image.BufferedImage;
import java.io.ByteArrayInputStream;
import java.io.InputStream;
import javax.imageio.ImageIO;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
import org.opencv.core.Core;
import org.opencv.core.Mat;
import org.opencv.core.MatOfByte;
import org.opencv.imgcodecs.Imgcodecs;
public class DisplayingImagesUsingSwings {
   public static void main(String args[]) throws Exception {
      //Loading the OpenCV core library
      System.loadLibrary( Core.NATIVE_LIBRARY_NAME );
      //Reading the Image from the file
      String file = "D:\\images\\tree.jpg";
      Mat image = Imgcodecs.imread(file);
      //Encoding the image
      MatOfByte matOfByte = new MatOfByte();
      Imgcodecs.imencode(".jpg", image, matOfByte);
      //Storing the encoded Mat in a byte array
      byte[] byteArray = matOfByte.toArray();
      //Preparing the Buffered Image
      InputStream in = new ByteArrayInputStream(byteArray);
      BufferedImage bufImage = ImageIO.read(in);
      //Instantiate JFrame
      JFrame frame = new JFrame();
      //Set Content to the JFrame
      frame.getContentPane().add(new JLabel(new ImageIcon(bufImage)));
      frame.pack();
      frame.setVisible(true);
      System.out.println("Image Loaded");
   }
}

ผลลัพธ์

ในการดำเนินการ โปรแกรมข้างต้นจะสร้างผลลัพธ์ต่อไปนี้ -

จะแสดงวัตถุ OpenCV Mat โดยใช้ Swings ได้อย่างไร