python opencv 그림 회전(그림 이 줄 어 들 지 않도록 유지)

본 논문 의 사례 는 python opencv 회전 이미지 의 구체 적 인 코드 를 공유 하고 이미지 가 줄 어 들 지 않도록 유지 하 며 참고 하 시기 바 랍 니 다.구체 적 인 내용 은 다음 과 같 습 니 다.

# -*- coding:gb2312 -*-
import cv2
from math import *
import numpy as np

img = cv2.imread("3-2.jpg")

height,width=img.shape[:2]

degree=45
#      
heightNew=int(width*fabs(sin(radians(degree)))+height*fabs(cos(radians(degree))))
widthNew=int(height*fabs(sin(radians(degree)))+width*fabs(cos(radians(degree))))

matRotation=cv2.getRotationMatrix2D((width/2,height/2),degree,1)

matRotation[0,2] +=(widthNew-width)/2 #     ,          
matRotation[1,2] +=(heightNew-height)/2 #     

imgRotation=cv2.warpAffine(img,matRotation,(widthNew,heightNew),borderValue=(255,255,255))

cv2.imshow("img",img)
cv2.imshow("imgRotation",imgRotation)
cv2.waitKey(0)
효과 그림:

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기