Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- vim명령어
- sshkey
- esp32
- libopencv-dev
- vi
- translation
- google drive 업로드
- NodeMCU
- vim
- Google Drive API
- vtk
- 고정ip할당
- google drive upload
- 아두이노 설치
- Python
- api사용해서 google drive에 폴더만들기
- opencv resize
- annotating
- 아두이노
- opencv
- 우분투 opencv 설치
- rotation
- 정보처리기사
- opencv apt설치
- Winform
- c#
- opengl
- apt update
- 정보처리기사후기
- ubuntu
Archives
- Today
- Total
내가 보려고 만든 블로그
OpenCV를 사용한 이미지 Rotation, Translation(python) 본문
반응형
1.이미지 회전
rotated.py
import cv2
# Reading the image
image = cv2.imread('Lenna.png')
# dividing height and width by 2 to get the center of the image
height, width = image.shape[:2]
# get the center coordinates of the image to create the 2D rotation matrix
center = (width/2, height/2)
# using cv2.getRotationMatrix2D() to get the rotation matrix
rotate_matrix = cv2.getRotationMatrix2D(center=center, angle=45, scale=1)
# rotate the image using cv2.warpAffine
rotated_image = cv2.warpAffine(src=image, M=rotate_matrix, dsize=(width, height))
cv2.imshow('Original image', image)
cv2.imshow('Rotated image', rotated_image)
# wait indefinitely, press any key on keyboard to exit
cv2.waitKey(0)
# save the rotated image to disk
cv2.imwrite('rotated_image.jpg', rotated_image)
translation.py
import cv2
import numpy as np
# Reading the image
image = cv2.imread('Lenna.png')
# dividing height and width by 2 to get the center of the image
height, width = image.shape[:2]
# get tx and ty values for translation
# you can specify any value of your choice
tx, ty = width / 4, height / 4
# create the translation matrix using tx and ty, it is a NumPy array
translation_matrix = np.array([
[1, 0, tx],
[0, 1, ty]
], dtype=np.float32)
# apply the translation to the image
translated_image = cv2.warpAffine(src=image, M=translation_matrix, dsize=(width, height))
# display the original and the Translated images
cv2.imshow('Translated image', translated_image)
cv2.imshow('Original image', image)
cv2.waitKey(0)
# save the translated image to disk
cv2.imwrite('translated_image.jpg', translated_image)
반응형
'OpenCV > python' 카테고리의 다른 글
OpenCV를 사용하여 이미지에 주석 달기(python) (0) | 2024.06.07 |
---|---|
OpenCV를 사용하여 이미지 자르기(python) (0) | 2024.05.30 |
OpenCV를 사용한 이미지 크기 조정(python) (0) | 2024.05.29 |
OpenCV를 사용하여 이미지 읽기, 표시 및 쓰기(python) (0) | 2024.05.27 |