OpenCV縮放
可以使用imgproc
類的resize()
方法對圖像執行縮放。 以下是此方法的語法。
Imgproc.resize(Mat src, Mat dst, Size dsize, double fx, double fy, int interpolation)
該方法接受以下參數 -
- src - 表示此操作的源(輸入圖像)的
Mat
對象。 - dst - 表示此操作的目標(輸出圖像)的
Mat
對象。 - dsize - 一個
Size
對象,表示輸出圖像的大小。 - fx -
double
類型的變量表示橫軸上的比例因子。 - fy -
double
類型的變量表示垂直軸上的比例因子。 - interpolation - 表示插值方法的整數變量。
示例
以下程序演示如何縮放圖像。
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
。
執行上面示例代碼,得到以下結果 -