clear_border

matplotlib

[matplotlib animation] 106. skimage.segmentation.expand_labelsによるラベル領域の非オーバーラップ展開

skimageのlabelで作成したlabel画像のラベルをexpand_labelsによって重なり合うことなく拡大させた様子をmatplotlibのFuncAnimationのアニメーションで表示する。
matplotlib

[SciPy] 20. spatial.distanceのeuclideanで画像上の物体間のユークリッド距離を求める

scipy.distanceのeuclideanにより画像中の物体間のユークリッド距離を求める方法について説明する。
matplotlib

[scikit-image] 94. ラベル付けした画像の特定のラベルイメージのみを表示

skimage.measure の label, regionprops_tableで2値画像のラベリングを行い、特定のラベルイメージのみを表示する方法について説明する。
python

[scikit-image] 53. 画像のラベリング(skimage.measure labelなど)

skimage.filtersのthreshold_otsu、morphologyのopening, closingなどによって、画像中の対象物をラベリングする方法について説明する。