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

จะแปลงวัตถุ OpenCV Mat เป็นวัตถุ BufferedImage โดยใช้ Java ได้อย่างไร


หากคุณพยายามอ่านรูปภาพโดยใช้ OpenCV imread() เมธอดจะส่งคืนวัตถุ Mat หากคุณต้องการแสดงเนื้อหาของวัตถุ Mat ที่เป็นผลลัพธ์โดยใช้หน้าต่าง AWT/Swings คุณต้องแปลงวัตถุ Mat เป็นวัตถุของคลาส java.awt.image.BufferedImage คุณต้องทำตามขั้นตอนด้านล่าง -

  • เข้ารหัส Mat เป็น MatOfByte − ก่อนอื่น คุณต้องแปลงเมทริกซ์เป็นเมทริกซ์ขนาดไบต์ คุณสามารถทำได้โดยใช้เมธอด imencode() ของคลาส Imgcodecs

    เมธอดนี้ยอมรับพารามิเตอร์ String (ระบุรูปแบบรูปภาพ) วัตถุ Mat (แทนรูปภาพ) วัตถุ MatOfByte

  • แปลงวัตถุ MatOfByte เป็นอาร์เรย์ไบต์ − แปลงวัตถุ MatOfByte เป็นอาร์เรย์ไบต์โดยใช้เมธอด toArray()

  • สร้าง ByteArrayInputStream ทันที − สร้างอินสแตนซ์ของคลาส ByteArrayInputStream โดยส่งอาร์เรย์ไบต์ที่สร้างในขั้นตอนก่อนหน้าไปยังหนึ่งในคอนสตรัคเตอร์

  • การสร้างวัตถุ BufferedImage − ส่งผ่านวัตถุ Input Stream ที่สร้างในขั้นตอนก่อนหน้าไปยังเมธอด read() ของคลาส ImageIO สิ่งนี้จะส่งคืนวัตถุ BufferedImage

ตัวอย่าง

import java.awt.image.BufferedImage;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import javax.imageio.ImageIO;
import org.opencv.core.Core;
import org.opencv.core.Mat;
import org.opencv.core.MatOfByte;
import org.opencv.imgcodecs.Imgcodecs;
public class Mat2BufferedImage {
   public static BufferedImage Mat2BufferedImage(Mat mat) throws IOException{
      //Encoding the image
      MatOfByte matOfByte = new MatOfByte();
      Imgcodecs.imencode(".jpg", mat, 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);
      return bufImage;
   }
   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 = "C:/EXAMPLES/OpenCV/sample.jpg";
      Mat image = Imgcodecs.imread(file);
      BufferedImage obj = Mat2BufferedImage(image);
      System.out.println(obj);
   }
}

ผลลัพธ์

BufferedImage@579bb367: type = 5 ColorModel: #pixelBits = 24 numComponents = 3
color space = java.awt.color.ICC_ColorSpace@1de0aca6 transparency = 1 has alpha =
false isAlphaPre = false ByteInterleavedRaster: width = 500 height = 360
#numDataElements 3 dataOff[0] = 2