Favicon

Flip image

Peponi2/19/20252m

C#
NugetPackageOpenCvSharp4

1. Introduction

OpenCvSharp4에는 Mat 클래스를 통해 이미지에 접근할 수 있다. 이 문서에서는 Mat 클래스를 통해 특정 축을 기준으로 이미지를 뒤집는 방법을 간략히 알아본다.

실습에 사용할 이미지는 다음과 같다.

Image by Vikash Kr Singh from Pixabay

2. Example

originalOriginal
X flipX flip
Y flipY flip
XY flipXY flip

X 축을 기준으로 뒤집는 경우 상하 반전, Y 축을 기준으로 뒤집는 경우 좌우 반전이 일어나게 된다.

실제로 수행되는 연산은 다음과 같다.

dstij={srcsrc.rowsi1,jif  flipCode=0srci,src.colsj1if  flipCode>0srcsrc.rowsi1,src.colsj1if  flipCode<0\texttt{dst} _{ij} = \left\{ \begin{array}{l l} \texttt{src} _{\texttt{src.rows}-i-1,j} & if\; \texttt{flipCode} = 0 \\ \texttt{src} _{i, \texttt{src.cols} -j-1} & if\; \texttt{flipCode} > 0 \\ \texttt{src} _{ \texttt{src.rows} -i-1, \texttt{src.cols} -j-1} & if\; \texttt{flipCode} < 0 \\ \end{array} \right.

코드 사용 방법은 다음과 같다.

private void Flip(Mat image)
{
    using var xFlip = image.Flip(FlipMode.X);
    using var yFlip = image.Flip(FlipMode.Y);
    using var xyFlip = image.Flip(FlipMode.XY);
}

flipCode는 다음 표를 참조한다.

EnumValueDescription
X0means flipping around x-axis
Y1means flipping around y-axis
XY-1means flipping around both axises

3. 참조 자료