■ imsave 함수를 사용해 이미지를 저장하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 |
import matplotlib from skimage import io matplotlib.use("TkAgg") io.use_plugin("matplotlib") imageNDArray = io.imread("source.png") io.imsave("target.png", imageNDArray) |