画像処理

matplotlib Animation

[matplotlib animation] 44. skimage.transform.swirlのstrength変化アニメーション

画像の非線形変換である渦巻き(skimage.transform.swirl)のパラメータ(strength)を変化させたときの画像の変化をmatplotlib FuncAnimationのアニメーションで表示する。
python

[scikit-image] 24. 画像の非線形変換(渦巻き模様:transform.swirl)

ここでは、skimage.transformのswirlを用いた画像の非線形変換(渦巻き)について説明する。
python

[scikit-image] 23. 画像の細線化処理(morphology.skeletonize)

scikit-imageのmorphology.skeletonize関数を使った画像の細線化処理について解説。物体の骨格抽出の基本から応用例まで、画像処理技術の効率化に役立つ情報を提供します。
python

[scikit-image] 22. ハフ変換による楕円の検出(transform.hough_ellipse)

scikit-imageのtransform.hough_ellipse関数を用いた画像内の楕円検出技術について解説。ハフ変換の原理と実装方法を具体的なコード例を交えて紹介し、効率的な楕円形状の検出手法を学べる記事です。
python

[scikit-image] 21. ハフ変換による円の検出(transform.hough_circle)

skimage.transform の hough_circleを用いた円の検出について説明する。
matplotlib Animation

[matplotlib animation] 41. approximate_polygonのtolerance変化アニメーション

matplotlib FuncAnimationによる、approximate_polygonのtoleranceを変化させるアニメーション
matplotlib Animation

[matplotlib animation] 40. subdivide_polygonの各degreeにおける実行回数変化アニメーション

matplotlib FuncAnimationによる、subdivide_polygonのdegree=1, 2, 3における実行回数変化アニメーション
python

[scikit-image] 20. 図形の近似と細分化(measure.approximate_polygon)

skimage.measure の approximate_polygonを用いた図形の近似