[VB.NET] 차근차근 OpenCVSharp 강좌 - 4. 이미지 회전
메인폼에 버튼 추가 - Name : ButtonRotate, Text : Rotate 버튼 클릭 이벤트에 아래 소스 추가 Private Sub ButtonRotate_Click(sender As Object, e As EventArgs) Handles ButtonRotate.Click Dim org As New Mat("D:\test\chipmunk.jpg", ImreadModes.Color), dst As New Mat Dim datum As New Point2f(org.Width / 2, org.Height / 2) Dim matrix As Mat = Cv2.GetRotationMatrix2D(datum, 90, 1) Cv2.WarpAffine(org, dst, matrix, New OpenCvSha..
2023.01.16