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
- annotating
- 정보처리기사후기
- vi
- 아두이노 설치
- vim명령어
- 정보처리기사
- libopencv-dev
- Google Drive API
- sshkey
- ubuntu
- translation
- apt update
- 우분투 opencv 설치
- Python
- rotation
- 고정ip할당
- opencv resize
- NodeMCU
- google drive upload
- 아두이노
- opencv apt설치
- opencv
- opengl
- api사용해서 google drive에 폴더만들기
- vtk
- Winform
- google drive 업로드
- vim
- esp32
- c#
Archives
- Today
- Total
내가 보려고 만든 블로그
OpenCV를 사용한 이미지 크기 조정(python) 본문
반응형
resizeImg.py
# let's start with the Imports
import cv2
import numpy as np
# Read the image using imread function
image = cv2.imread('Lenna.png')
cv2.imshow('Original Image', image)
# let's downscale the image using new width and height
down_width = 300
down_height = 200
down_points = (down_width, down_height)
resized_down = cv2.resize(image, down_points, interpolation= cv2.INTER_LINEAR)
# let's upscale the image using new width and height
up_width = 800
up_height = 600
up_points = (up_width, up_height)
resized_up = cv2.resize(image, up_points, interpolation= cv2.INTER_LINEAR)
# Display images
cv2.imshow('Resized Down', resized_down)
cv2.waitKey()
cv2.imshow('Resized Up', resized_up)
cv2.waitKey()
#press any key to close the windows
cv2.destroyAllWindows()
반응형
'OpenCV > python' 카테고리의 다른 글
OpenCV를 사용하여 이미지에 주석 달기(python) (0) | 2024.06.07 |
---|---|
OpenCV를 사용한 이미지 Rotation, Translation(python) (0) | 2024.05.31 |
OpenCV를 사용하여 이미지 자르기(python) (0) | 2024.05.30 |
OpenCV를 사용하여 이미지 읽기, 표시 및 쓰기(python) (0) | 2024.05.27 |