はじめに
画像の非線形変換である渦巻き(skimage.transform.swirl)のパラメータ(radius)を変化させたときの画像の変化をmatplotlib FuncAnimationのアニメーションで表示する。
radiusを増加させることで、旋回の及ぶ範囲が拡大していくことが確認できる。
コード
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%matplotlib
import matplotlib.pyplot as plt
from skimage.transform import swirl
import matplotlib.animation as animation
from IPython.display import HTML
#load image
img = plt.imread('kabutomaru.jpg')
#make swirled images
swirled_imgs=[]
for i in range(40):
swirled = swirl(img, rotation=0, strength=15, radius=20*(i+1))
swirled_imgs.append(swirled)
#animation
fig, ax= plt.subplots(figsize=(6,6))
def update(num):
ax.cla()
ax.imshow(swirled_imgs[num])
ax.set_title("radius="+str(20*(num+1)))
ani = animation.FuncAnimation(fig, update, 40, interval=250)
ani.save('swirl_anim.mp4', writer="ffmpeg",dpi=120)
HTML(ani.to_html5_video())
解説
モジュールのインポート
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%matplotlib
import matplotlib.pyplot as plt
from skimage.transform import swirl
import matplotlib.animation as animation
from IPython.display import HTML
バージョン
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#version
import matplotlib
print(matplotlib.__version__)
3.4.3
import skimage
print(skimage.__version__)
0.18.3
画像の読み込み
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#load image
img = plt.imread('kabutomaru.jpg')
読み込んだ画像をimshowで表示すると下のようになる。

渦巻画像の作成
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#make swirled images
swirled_imgs=[]
for i in range(40):
swirled = swirl(img, rotation=0, strength=15, radius=20*(i+1))
swirled_imgs.append(swirled)
radiusを変化させた渦巻画像を作成し、リストに入れてゆく。

[scikit-image] 24. 画像の非線形変換(渦巻き模様:transform.swirl)
ここでは、skimage.transformのswirlを用いた画像の非線形変換(渦巻き)について説明する。
アニメーションの設定
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fig, ax= plt.subplots(figsize=(6,6))
def update(num):
ax.cla()
ax.imshow(swirled_imgs[num])
ax.set_title("radius="+str(20*(num+1)))
逐次、現在の画像を消して新しい画像を表示するという方法でアニメーション表示をするので、ax.cla()により、古い画像を消す。
ax.imshow(swirled_imgs[num])で渦巻画像を順次表示していき、タイトルに変化するradiusの値を表示する。
アニメーションの表示
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ani = animation.FuncAnimation(fig, update, 40, interval=250)
ani.save('swirl_anim.mp4', writer="ffmpeg",dpi=120)
HTML(ani.to_html5_video())
40stepアニメーション関数を実行して、250 ms間隔で順次図をかえていくので、10 secのアニメーションとなる。
HTML(ani.to_html5_video())とすればjupyter notebook, lab上にアニメーションを表示できる。
参考
Swirl — skimage 0.25.2 documentation
コメント