OpenCV-확장
수행 할 수 있습니다 scaling 사용하여 이미지에 resize() 의 방법 imgproc수업. 다음은이 메서드의 구문입니다.
resize(Mat src, Mat dst, Size dsize, double fx, double fy, int interpolation)
이 방법은 다음 매개 변수를 허용합니다.
src − A Mat 이 작업의 소스 (입력 이미지)를 나타내는 개체입니다.
dst − A Mat 이 작업의 대상 (출력 이미지)을 나타내는 개체입니다.
dsize − A Size 출력 이미지의 크기를 나타내는 개체입니다.
fx − 수평 축을 따라 배율을 나타내는 double 유형의 변수.
fy − 수직 축을 따라 배율을 나타내는 double 유형의 변수.
Interpolation − 보간 방법을 나타내는 정수 변수.
예
다음 프로그램은 신청 방법을 보여줍니다 scale transformation 이미지에.
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 위 프로그램에서 지정합니다 (크기-폭 : 300px 및 높이 : 300px).
산출
프로그램을 실행하면 다음과 같은 출력이 표시됩니다.
Image Processed
지정된 경로를 열면 다음과 같이 출력 이미지를 볼 수 있습니다. (size − Width : 600px, height : 600px) −