1
パディングと軸なしで画像を保存したいだけです。以下は
コードです:写真のパディングを削除するには?
#-*- coding:utf-8 -*-
import SimpleITK as sitk
import numpy as np
import matplotlib.pyplot as plt
url = r"G:to\my\filename.mha"
path = r'F:\image\s.png'
image = sitk.ReadImage(url)
max_index = image.GetDepth()
max_width = image.GetWidth()
max_height = image.GetHeight()
print(max_index,max_width,max_height)
# As list of 2D numpy arrays which cannot be modified (no data copied)
xxx = sitk.GetArrayViewFromImage(image)[75,:,:]
zzz = plt.imshow(xxx,cmap = 'gray')
plt.savefig(path)
plt.show()
解決策を確認してその効果を示すために実行できる[最小限の作業例](https://stackoverflow.com/help/mcve)として送信できれば幸いです。 –
@ TomdeGeus、OK、私はgithub.hereに送信します:http://github.com/hei6775/example.git – hey6775
これはまだ複雑です!ランダムなデータを使って 'SimpleITK'ライブラリを取り除くことができます。あなたは本当にmatplotlibとimshowについて質問しています。 –