0
ジュピターノートブックで画像のペアをアニメーション化することは可能ですか?画像の二つのリストでサブプロット(matplotlib)で画像を含むアニメーションを生成する方法
:
greys = io.imread_collection(path_greys)
grdTru= io.imread_collection(path_grdTru)
次未経験のコードでは、アニメーションを生成するために失敗した:ところで
for idx in range(1,900):
plt.subplot(121)
plt.imshow(greys[idx], interpolation='nearest', cmap=plt.cm.gray)
plt.subplot(122)
plt.imshow(grdTru[idx], interpolation='nearest', cmap=plt.cm.,vmin=0,vmax=3)
plt.show()
(これは、サブプロットのリストを生成)
を、ノートブックにペーストした場合、example found in matplotlib文書が失敗しました。あなたは
%matplotlib notebook
魔法のコマンドを含める必要がありjupyterノートにthe example作品を作るために