python

python

[scikit-image] 27. 画像のサイズ変更、形状変更(skimage.transform.rescale など)

ここではskimage.transformの rescale, resize, downscale_local_mean による画像のサイズに関するいくつかの変更方法について説明する。
python

[scikit-image] 26. 画像の周囲を補間する(skimage.util.pad)

ここでは、skimage.utilのpadによる画像の周囲を補間する方法について説明する。
matplotlib 3D

[matplotlib animation] 47. Voxelで作成したNumPyロゴの色変化アニメーション(カラー)

matplotlibのVoxelグラフを使用してNumPyロゴを3Dで作成し、FuncAnimationでロゴの色が動的に変化するアニメーションを実装する方法を解説します。Pythonでの科学技術計算とデータ可視化の応用例を紹介します。
matplotlib 3D

[matplotlib animation] 46. Voxelで作成したNumPyロゴの色変化アニメーション(グレースケール)

Matplotlibのvoxelを使ってNumPyロゴを3Dで表現し、グレースケールで色が変化するアニメーションを作成する方法を解説します。FuncAnimationを活用した3Dビジュアライゼーション技術について学べます。
NumPy

[NumPy] 18.行列の1次元への変換(フラット化)

NumPyにおいて、行列を1次元にフラット化する方法とflattenとravelの違いについて解説する。
python

[scikit-image] 25. 一定倍率で縮小された連続画像を生成(transform.pyramid_gaussian)

ここでは、skimage.transformのpyramid_gaussianによる一定倍率で縮小された連続画像の生成方法について説明する。
matplotlib Animation

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

matplotlibのFuncAnimationを使用して、skimageの渦巻き変換(transform.swirl)のradius値変化による画像の変形過程をアニメーション化する方法を解説。Pythonによる画像処理と視覚化の実践例。
matplotlib Animation

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

matplotlibのFuncAnimationを使用して、scikit-imageのswirl関数のstrengthパラメータを変化させた時の渦巻き効果による画像変形をアニメーション化する方法を解説。画像処理における非線形変換の視覚的な理解に役立ちます。