OpenCV - 将图像读取为 BGR

以下程序演示了如何将彩色图像读取为 BGR 类型图像并使用 JavaFX 窗口显示它。在这里,我们通过将标志 IMREAD_COLOR 传递给方法 imread() 以及保存彩色图像路径的字符串来读取图像。

import java.awt.image.BufferedImage;

import org.opencv.core.Core;
import org.opencv.core.Mat;
import org.opencv.imgcodecs.Imgcodecs;

import javafx.application.Application;
import javafx.embed.swing.SwingFXUtils;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.image.ImageView;
import javafx.scene.image.WritableImage;
import javafx.stage.Stage;

public class ReadingAsColored extends Application {
   @Override 
   public void start(Stage stage) throws Exception {
        WritableImage writableImage = loadAndConvert();
        
        // 设置图像视图
        ImageView imageView = new ImageView(writableImage);
        
        // 设置图像的位置
        imageView.setX(10);
        imageView.setY(10);
        
        // 设置图像视图的适合高度和宽度
        imageView.setFitHeight(400);
        imageView.setFitWidth(600);
        
        // 设置图像视图的保留比例
        imageView.setPreserveRatio(true);
        
        // 创建 Group 对象
        Group root = new Group(imageView);
        
        // 创建 scene 对象
        Scene scene = new Scene(root, 600, 400);
        
        // 设置 Stage 的标题
        stage.setTitle("读取为彩色图像");
        
        // 将场景添加到舞台
        stage.setScene(scene);
        
        // 显示舞台的内容
        stage.show();
   } 
   public WritableImage loadAndConvert() throws Exception {     
        // 加载 OpenCV 核心库
        System.loadLibrary( Core.NATIVE_LIBRARY_NAME );
        
        String input = "C:/EXAMPLES/OpenCV/sample.jpg";
        
        Mat dst = new Mat();
        
        // 读取图像
        Mat src = Imgcodecs.imread(input, Imgcodecs.IMREAD_COLOR);
        
        byte[] data1 = new byte[src.rows() * src.cols() * (int)(src.elemSize())];
        src.get(0, 0, data1);
        
        // 创建缓冲图像
        BufferedImage bufImage = new BufferedImage(src.cols(),src.rows(),
        BufferedImage.TYPE_3BYTE_BGR);
        
        // 将数据元素设置为图像
        bufImage.getRaster().setDataElements(0, 0, src.cols(), src.rows(), data1);
        
        // 创建 WritableImage
        WritableImage writableImage = SwingFXUtils.toFXImage(bufImage, null);
        
        System.out.println("Image read");
        return writableImage;
   } 
   public static void main(String args[]) throws Exception {
      launch(args);
   } 
}

输入图像

假设以下是上述程序中指定的输入图像 sample.jpg

样本图像

输出图像

执行程序后,您将获得以下输出。

BGR 输出图像