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 | 31 |
Tags
- google drive 업로드
- Winform
- apt update
- opengl
- opencv resize
- vim명령어
- vi
- 우분투 opencv 설치
- translation
- Google Drive API
- rotation
- vim
- 정보처리기사
- google drive upload
- Python
- opencv apt설치
- sshkey
- vtk
- annotating
- 아두이노 설치
- libopencv-dev
- 고정ip할당
- opencv
- c#
- 아두이노
- 정보처리기사후기
- api사용해서 google drive에 폴더만들기
- ubuntu
- NodeMCU
- esp32
Archives
- Today
- Total
내가 보려고 만든 블로그
OpenCV를 사용하여 이미지 읽기, 표시 및 쓰기(python) 본문
반응형
python -V
Python 3.10.12
사용함
readWrite.py
# import the cv2 library
import cv2
# The function cv2.imread() is used to read an image.
img_grayscale = cv2.imread('test.jpg',0)
# The function cv2.imshow() is used to display an image in a window.
cv2.imshow('graycsale image',img_grayscale)
# waitKey() waits for a key press to close the window and 0 specifies indefinite loop
cv2.waitKey(0)
# cv2.destroyAllWindows() simply destroys all the windows we created.
cv2.destroyAllWindows()
# The function cv2.imwrite() is used to write an image.
cv2.imwrite('grayscale.jpg',img_grayscale)
python3 readWrite.py
반응형
'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.29 |