■ rgb2hsv 함수를 사용해 HSV 색상 모드 이미지를 구하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import matplotlib from skimage import io, color matplotlib.use('TkAgg') io.use_plugin('matplotlib') imageNDArray = io.imread("source.png") hsvImageNDArray = color.rgb2hsv(imageNDArray) io.imshow(hsvImageNDArray) io.show() |