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 일기
 - 파이썬 여러줄 주석
 - 윈도우 커맨드창
 - 파이썬 형변환
 - 마크다운
 - 모듈 패키지 라이브러리
 - 런타임
 - AIFFEL 회고
 - 파이썬 긴 문자열 변수
 - 파이썬 문법
 - Python
 - Linux
 - 마크다운 인라인 수식
 - 파이썬 주석 변수
 - python 문법
 - compile time
 - 마크다운 inline 수식
 - Aiffel
 - 아이펠
 - 파이썬 여러줄 문자열 변수
 - 리눅스
 - Markdown
 - PYTHON 주석 변수
 - 파이썬 진수변환
 - 아이펠 일기
 - AIFFEL일기
 - 파이썬
 - 아이펠일기
 - 아이펠 회고
 - 컴파일타임
 
                            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