OpenCV写入图像

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

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

以下是此方法的语法。

imwrite(filename, mat)

该方法接受以下参数 -

  • filename - 一个String变量,表示保存文件的路径。
  • 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 ="F:/worksp/opencv/images/sample.jpg";   
      Mat matrix = imageCodecs.imread(file); 

      System.out.println("Image Loaded ..........");
      String file2 = "F:/worksp/opencv/images/sample_resaved.jpg"; 

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

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

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

如果您打开指定的路径,可以观察保存的图像。


上一篇:OpenCV读取图像

下一篇:OpenCV用户界面

关注微信小程序
程序员编程王-随时随地学编程

扫描二维码
程序员编程王

扫一扫关注最新编程教程