transform

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] 22. ハフ変換による楕円の検出(transform.hough_ellipse)

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

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

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

[scikit-image] 19. 画像のHough変換(transform.probabilistic_hough_line)

scikit-imageライブラリのtransform.probabilistic_hough_line関数を使用した画像のHough変換による直線検出について解説します。エッジ検出後の画像から直線を抽出する方法と実装例を紹介します。