반응형
scikit-image, 흑백이미지, grayscale, rgb2gray¶
In [1]:
import matplotlib.pyplot as plt
In [2]:
# skimage를 활용한 이미지 불러오기
from skimage import io
img = io.imread("test_image.png")
- skimage 에서 color 객체에서 rgb2gray 함수를 사용하고 괄호 안에 이미지 변수를 넣습니다.
In [4]:
from skimage import color
gray_img = color.rgb2gray(img)
In [5]:
plt.imshow(gray_img, cmap=plt.cm.gray)
Out[5]:
<matplotlib.image.AxesImage at 0x7f9511bddf40>
In [1]:
# 노트 폭을 줄이는 코드 입니다. 무시하셔도 됩니다. !!
from IPython.core.display import display, HTML
display(HTML("<style>.container{width:90%!important;}</style>"))
반응형
댓글