OpenCV - 写入图像


Imgcodecs类的 write() 方法用于使用OpenCV 写入图像。要写入图像,请重复上一示例中的前三个步骤。

要写入图像,您需要调用Imgcodecs类的imwrite()方法。

以下是该方法的语法。

imwrite(filename, mat)

该方法接受以下参数 -

  • filename -表示保存文件的路径的字符串变量。

  • mat -表示要写入的图像的Mat对象。

例子

以下程序是使用 OpenCV 库使用 Java 程序编写图像的示例。

import org.opencv.core.Core; 
import org.opencv.core.Mat; 
import org.opencv.imgcodecs.Imgcodecs;
 
public class WritingImages {  
   public static void main(String args[]) { 
      //Loading the OpenCV core library  
      System.loadLibrary(Core.NATIVE_LIBRARY_NAME); 
      
      //Instantiating the imagecodecs class 
      Imgcodecs imageCodecs = new Imgcodecs(); 

      //Reading the Image from the file and storing it in to a Matrix object 
      String file ="C:/EXAMPLES/OpenCV/sample.jpg";   
      Mat matrix = imageCodecs.imread(file); 

      System.out.println("Image Loaded ..........");
      String file2 = "C:/EXAMPLES/OpenCV/sample_resaved.jpg"; 

      //Writing the image 
      imageCodecs.imwrite(file2, matrix); 
      System.out.println("Image Saved ............"); 
   } 
}

执行上述程序时,您将得到以下输出 -

Image Loaded .......... 
Image Saved ...........

如果打开指定路径,可以观察保存的图像,如下所示 -

写入图像