画像に複数のフィルターを適用し画像作成できる「fimage」のインストールについて解説しています。
fimage(https://github.com/jordandjp/fimage)は、フィルターを作成し既存の画像に適用することで、フィルター適用後の画像を作成することができるモジュールです。
■Python
今回のPythonのバージョンは、「3.8.5」を使用しています。(Windows10)(pythonランチャーでの確認)
■fimageをインストールする
fimageをインストールを行いますが、今回はpipを経由してインストールを行うので、まずWindowsのコマンドプロンプトを起動します。
pip install fimage
起動後、上記のコマンドを入力し、Enterキーを押します。
なお、今回は、pythonランチャーを使用しており、Python Version 3.8.5にインストールを行うために、pipを使う場合にはコマンドでの切り替えを行います。
py -3.8 -m pip install fimage
切り替えるために、上記のコマンドを入力し、Enterキーを押します。
Defaulting to user installation because normal site-packages is not writeable Collecting fimage Downloading fimage-0.1.6-py3-none-any.whl (8.2 kB) Requirement already satisfied: Pillow<9.0.0,>=8.0.0 in c:\users\user_\appdata\roaming\python\python38\site-packages (from fimage) (8.2.0) Collecting numpy<2.0.0,>=1.21.4 Downloading numpy-1.21.5-cp38-cp38-win_amd64.whl (14.0 MB) |████████████████████████████████| 14.0 MB 3.3 MB/s Installing collected packages: numpy, fimage Attempting uninstall: numpy Found existing installation: numpy 1.20.3 Uninstalling numpy-1.20.3: Successfully uninstalled numpy-1.20.3 Successfully installed fimage-0.1.6 numpy-1.21.5
Enterキーを押すと、インストールが開始され、上記のように「Successfully installed」と表示されます。これが表示されれば、fimageが正常にインストールされたことになります。
なお、今回はfimageのバージョン0.1.6をインストールしました。
コメント