반응형
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
- Excel
- gas
- Kotlin
- Tkinter
- 파이썬
- matplotlib
- Java
- PostgreSQL
- c#
- PANDAS
- SQL
- string
- dataframe
- Mac
- numpy
- array
- Github
- GIT
- Python
- Google Excel
- list
- Apache
- Redshift
- hive
- google apps script
- PySpark
- math
- django
- Google Spreadsheet
Archives
- Today
- Total
목록Python/Python opencv (1)
달나라 노트
Python opencv : opencv로 간단한 색상 이미지 생성하기
opencv는 이미지 처리 기능, 머신러닝 등의 기능을 제공하는 툴 입니다. opencv를 이용해 간단하게 원하는 크기의 원하는 색상의 이미지를 만들어봅시다. 이를 위해선 numpy array가 필요합니다. import numpy as npimport cv2arr_for_img = np.zeros(shape=(800, 500), dtype=float) # 행 개수 800개, 열 개수 500개의 0으로 채워진 2차원 array 생성print(arr_for_img)cv2.imwrite('img_black.png', arr_for_img) # array를 이용하여 png image 생성-- Result[[0. 0. 0. ... 0. 0. 0.] [0. 0. 0. ... 0. 0. 0.] [0. 0. ..
Python/Python opencv
2024. 3. 7. 02:08