包的Imgcodecs類org.opencv.Imgcodecs提供讀取和寫入圖像的方法。使用OpenCV,您可以讀取圖像並將其存儲在矩陣中(如果需要,對矩陣執行轉換)。稍後,您可以將處理後的矩陣寫入文件。
類的read()方法用於使用OpenCV讀取圖像。下面是這個方法的語法。
imread(filename)
它接受一個參數(filename),這是一個字符串類型的變量,表示要讀取的文件的路徑。
下面給出了使用OpenCV庫在Java中讀取圖像的步驟。
Step 1: Load the OpenCV native library
使用Load()方法加載OpenCV本機庫,如下所示。
//Loading the core library System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
Step 2: Instantiate the Imgcodecs class
實例化Imgcodecs類。
//Instantiating the Imgcodecs class Imgcodecs imageCodecs = new Imgcodecs();
Step 3: Reading the image
使用imread()方法讀取圖像。此方法接受表示圖像路徑的字符串參數,並返回讀取爲Mat對象的圖像。
//Reading the Image from the file Mat matrix = imageCodecs.imread(Path of the image);
Example
下面的程序代碼演示如何使用OpenCV庫讀取圖像。
import org.opencv.core.Core; import org.opencv.core.Mat; import org.opencv.imgcodecs.Imgcodecs; public class ReadingImages { 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 String file ="C:/EXAMPLES/OpenCV/sample.jpg"; Mat matrix = imageCodecs.imread(file); System.out.println("Image Loaded"); } }
在執行上述程序時,OpenCV加載指定的圖像並顯示以下輸出−