您可以使用imgproc類的resize()方法對圖像執行縮放。下面是這個方法的語法。
resize(Mat src, Mat dst, Size dsize, double fx, double fy, int interpolation)
此方法接受以下參數&負;
src−AMat對象,表示此操作的源(輸入圖像)。
dst−AMat表示此操作的目標(輸出圖像)的對象。
dsize−ASize表示輸出圖像大小的對象。
fx−雙精度類型的變量,表示沿水平軸的比例因子。
fy−雙精度類型的變量,表示沿垂直軸的比例因子。
插值−表示插值方法的整數變量。
Example
下面的程序演示如何對圖像應用縮放變換。
import org.opencv.core.Core; import org.opencv.core.Mat; import org.opencv.core.Size; import org.opencv.imgcodecs.Imgcodecs; import org.opencv.imgproc.Imgproc; public class Scaling { public static void main(String args[]) { // Loading the OpenCV core library System.loadLibrary( Core.NATIVE_LIBRARY_NAME ); // Reading the Image from the file and storing it in to a Matrix object String file ="E:/OpenCV/chap24/transform_input.jpg"; Mat src = Imgcodecs.imread(file); // Creating an empty matrix to store the result Mat dst = new Mat(); // Creating the Size object Size size = new Size(src.rows()*2, src.rows()*2); // Scaling the Image Imgproc.resize(src, dst, size, 0, 0, Imgproc.INTER_AREA); // Writing the image Imgcodecs.imwrite("E:/OpenCV/chap24/scale_output.jpg", dst); System.out.println("Image Processed"); } }
假設下面是在上面的程序中指定的輸入圖像transform_input.jpg(size−Width:300px,height:300px)。
Output
在執行程序時,您將得到以下輸出&負;
Image Processed
如果打開指定的路徑,可以按如下方式觀察輸出圖像(大小:寬度:600px,高度:600px)−