이미지 데이터 다루기
2018. 10. 31. 17:03
이미지 데이터 다루기 (Image Handling) 간단간단하게 코드를 통해 설명하겠습니다. 아래의 패키지를 먼저 import해줍니다. import os from scipy.misc import imread, imresize import matplotlib.pyplot as plt %matplotlib inline 이미지의 shape을 print해보기 위해 간단한 출력함수를 만들어줍니다. def print_typeshape(img): print("Type is %s" % (type(img))) print("Shape is %s" % (img.shape,)) 먼저, 저는 코드를 실행시키는 위치와 동일선상에 img 폴더(디렉토리)를 만들어 그 안에 고양이, 강아지, 젖소 등의 사진을 넣어놓았습니다. 아래를 ..