OpenCV-회전
당신은 할 수 있습니다 perform rotation 사용하여 이미지 작업 warpAffine() 의 방법 imgproc수업. 다음은이 방법의 구문입니다-
Imgproc.warpAffine(src, dst, rotationMatrix, size);
이 방법은 다음 매개 변수를 허용합니다.
src − A Mat 이 작업의 소스 (입력 이미지)를 나타내는 개체입니다.
dst − A Mat 이 작업의 대상 (출력 이미지)을 나타내는 개체입니다.
rotationMatrix − A Mat 회전 행렬을 나타내는 객체입니다.
size − 출력 이미지의 크기를 나타내는 정수 유형의 변수.
예
다음 프로그램은 이미지를 회전하는 방법을 보여줍니다.
import org.opencv.core.Core;
import org.opencv.core.Mat;
import org.opencv.core.Point;
import org.opencv.core.Size;
import org.opencv.imgcodecs.Imgcodecs;
import org.opencv.imgproc.Imgproc;
public class Rotation {
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 a Point object
Point point = new Point(300, 200)
// Creating the transformation matrix M
Mat rotationMatrix = Imgproc.getRotationMatrix2D(point, 30, 1);
// Creating the object of the class Size
Size size = new Size(src.cols(), src.cols());
// Rotating the given image
Imgproc.warpAffine(src, dst, rotationMatrix, size);
// Writing the image
Imgcodecs.imwrite("E:/OpenCV/chap24/rotate_output.jpg", dst);
System.out.println("Image Processed");
}
}
다음이 입력 이미지라고 가정합니다. transform_input.jpg 위의 프로그램에서 지정합니다.
산출
프로그램을 실행하면 다음과 같은 출력이 표시됩니다.
Image Processed
지정된 경로를 열면 다음과 같이 출력 이미지를 관찰 할 수 있습니다.