threshold_otsu

matplotlib

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

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

[matplotlib] 113. ラベル画像のクリックイベントでラベルと元画像を拡大して表示

matplotlibのbutton_press_eventで、skimageのlabelで作成したlabel画像のラベルとその元画像を拡大して横に表示する方法について説明する。
jupyter notebook, lab

[matplotlib] 112. クリックイベントでラベル画像のregionprops情報を表示

matplotlibのbutton_press_eventで、skimageのlabelで作成したlabel画像上の各ラベル情報を画像の横に表示する方法について説明する。
matplotlib

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

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

[scikit-image] 97. 適応的しきい値処理による画像の2値化(skimage.filters threshold_local)

skimage.filters の threshold_localで適応的しきい値処理を行う方法について説明する。
matplotlib

[scikit-image] 96. 大津の適応的しきい値処理による画像の2値化(skimage.filters rank.otsu)

skimage.filtersのrank.otsuで大津の方法で適応的しきい値処理を行う方法について説明する。
matplotlib

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

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

[scikit-image] 92. ラベル付けした部分をサイズに応じて塗り分けて表示

skimage.measure の label, regionprops_tableで2値画像のラベリングとサイズ計測を行い、サイズを大中小で分類し、塗り分けて表示する方法について説明する。