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
- Aiffel
- 아이펠 일기
- python 문법
- PYTHON 주석 변수
- 아이펠 회고
- 파이썬 여러줄 문자열 변수
- 파이썬 긴 문자열 변수
- AIFFEL 회고
- 마크다운
- Python
- 파이썬 주석 변수
- 컴파일타임
- 런타임
- 파이썬 문법
- AIFFEL 일기
- AIFFEL일기
- 아이펠
- 윈도우 커맨드창
- 마크다운 inline 수식
- 아이펠일기
- Markdown
- Linux
- 파이썬 형변환
- 파이썬 여러줄 주석
- 파이썬 진수변환
- 모듈 패키지 라이브러리
- 파이썬
- 마크다운 인라인 수식
- compile time
- 리눅스
Archives
- Today
- Total
목록분류 전체보기 (49)
튜토리얼에도 고난과 역경이 있다.

파일이름 : util.py import numpy as np import matplotlib.pyplot as plt from tkinter import filedialog import tkinter def readImage(path): image=np.fromfile(path,dtype=np.uint8) image=image.reshape(256,256) image=image.astype(np.int16) # 자료형 변환 return image def showImage(image): result=image.copy() # numpy 배열 복사 result=result.astype(np.uint8) # plt.imshow(image, cmap='gray',vmin=0, vmax= 255, interpol..
오류일기
2021. 3. 16. 13:08