[컴퓨터 비전] Image Rotation 구현하기
이번 포스팅에서는 Image Rotation 에 대해 다루려고 한다. Image Rotation 공식을 이용하여 영상을 회전시켰다. Lena.png 파일을 각각 30도, 45도, 60도 회전시킨 결과이다. [소스 코드] 사용 언어: C++ 환경: Microsoft Windows 10 Home, Visual Studio 2022, C:\opencv... #include <opencv2/opencv.hpp> #include <iostream> #include <cmath> using namespace cv; using namespace std; Mat rotateImage(const...