可以使用imgproc
類的resize()
方法對影象執行縮放。 以下是此方法的語法。
Imgproc.resize(Mat src, Mat dst, Size dsize, double fx, double fy, int interpolation)
該方法接受以下引數 -
Mat
物件。Mat
物件。Size
物件,表示輸出影象的大小。double
型別的變數表示橫軸上的比例因子。double
型別的變數表示垂直軸上的比例因子。範例
以下程式演示如何縮放影象。
package com.yiibai.geometric;
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 ="F:/worksp/opencv/images/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("F:/worksp/opencv/images/scale_output.jpg", dst);
System.out.println("Image Processed");
}
}
假定以下是上述程式中指定的輸入影象:transform_input.jpg
。
執行上面範例程式碼,得到以下結果 -