ndimage

matplotlib

[SciPy] 12. ndimageのdistance_transform_cdt, distance_transform_edtによる2値化像の距離変換

ndimageのdistance_transform_cdt, distance_transform_edtにより、2値化像の距離変換像を作成することができる。ここでは、distance_transform_cdtによるマンハッタン距離、チェスボード距離、distance_transform_edtによるユークリッド距離の例を表示する。
matplotlib

[matplotlib animation] 88. imshowでのcmap変化アニメーション

plt.imshowで表示した画像のカラーマップを変化させたときの色の変化をmatplotlibのFuncAnimationによるアニメーションで表示する。
matplotlib

[matplotlib] 82. マウスイベントで画像上の任意の位置に四角を表示

matplotlibのbutton_press_event、button_release_event、motion_notify_eventで、画像の任意の位置に四角をインタラクティブに表示する方法について説明する。
matplotlib 3D

[SciPy] 7. ndimage.morphology.distance_transform_edtによる背景からの距離計算

ndimage.morphologyのdistance_transform_edtにより、背景からのユークリッド距離を計算する。
python

[scikit-image] 51. 画像の局所的な極大値を検出(skimage.feature peak_local_max)

skimage.featureのpeak_local_maxによる画像中の局所的な極大値を検出する方法について説明する。
python

[SciPy] 5. ndimageのmeasurements, morphologyで実生サボテンのラベリングとサイズ計測

SciPy, ndimageのmeasurements, morphology を用いてサボテンのラベリングとサイズ計測などを行った例についてに説明する。
python

[SciPy] 3. ndimageによる画像処理

SciPyのndimageによる画像の処理方法