Perspective transformation
Peponi │ 3/27/2025 │ 3m
C#
NugetPackageOpenCvSharp4ProjectionMatrix
Perspective transformation
3/27/2025
3m
Peponi
C#
NugetPackageOpenCvSharp4ProjectionMatrix
1. Introduction
OpenCV의 원근 변환은 2D 공간에서 행렬을 변환하는 데 사용되는 4 point 변환이다. 이 때, 원본 이미지로부터 선의 특징을 유지하며 변환이 이루어진다. 원근 변환을 수학적으로 표현하면 다음과 같다.
- Transformation matrix
원근 변환을 위한 변환 행렬은 행렬로 표현된다. - Homogeneous coordinates
2차원 좌표 를 변환하기 위해 동차 좌표인 로 표현한다. - Computation
와 를 곱하여 를 산출한다. - Normalization
의 좌표를 정규화하여 최종 좌표 를 얻는다.
OpenCV에서는 transformation matrix를 구하기 위한 Cv2.GetPerspectiveTransform()
을 제공하여 쉽게 변환 행렬을 얻을 수 있다. 이 문서에서는 연산을 수행할 4개의 좌표와 이동 좌표를 이용하여 원근 변환을 수행하는 예시를 소개한다.
실습에 사용할 이미지는 다음과 같다.

2. Example


private void PerspectiveTransform(Mat image)
{
// 각 collection의 순서에 맞춰 변환
List<Point2f> origin = [
new(180, 470),
new(294, 470),
new(90, 625),
new(387, 625)
];
List<Point2f> destination = [
new(0, 0),
new(480, 0),
new(0, 640),
new(480, 640)
];
// 이미지에 초기 좌표 표시
origin.ForEach(point => image.Circle((int)point.X, (int)point.Y, 8, Scalar.LightGreen, -1));
// 원근 변환 행렬 생성
using var perspectiveTransformation = Cv2.GetPerspectiveTransform(origin, destination);
// Transform
using var perspectiveTransformed = new Mat();
Cv2.WarpPerspective(image, perspectiveTransformed, perspectiveTransformation, new OpenCvSharp.Size(image.Width, image.Height));
}