Python
 Computer >> コンピューター >  >> プログラミング >> Python

Pillowライブラリを使用して画像を回転する


このプログラムでは、枕ライブラリを使用して画像を回転させます。 Imageクラスのrotate()関数は回転角を取ります。

元の画像

Pillowライブラリを使用して画像を回転する

アルゴリズム

Step1: Import Image class from Pillow.
Step 2: Open the image.
Step 3: Rotate the image.
Step 4: Display the output.

サンプルコード

from PIL import Image

im = Image.open('testimage.jpg')
im.rotate(45).show()

出力

Pillowライブラリを使用して画像を回転する


  1. Pillowライブラリを使用して、画像内の各バンドのすべてのピクセルの平均を計算する

    このプログラムでは、Pillowライブラリを使用して各チャネルのすべてのピクセルの平均を計算します。画像には合計3つのチャネルがあるため、3つの値のリストが表示されます。 元の画像 アルゴリズム Step 1: Import the Image and ImageStat libraries. Step 2: Open the image. Step 3: Pass the image to the stat function of the imagestat class. Step 4: Print the mean of the pixels. サンプルコード from PIL im

  2. Pillowライブラリを使用して、画像内の各バンドのすべてのピクセルの中央値を計算します

    このプログラムでは、Pillowライブラリを使用して、各チャネルのすべてのピクセルのMEDIANを計算します。画像には合計3つのチャネルがあるため、3つの値のリストが表示されます。 元の画像 アルゴリズム Step 1: Import the Image and ImageStat libraries. Step 2: Open the image. Step 3: Pass the image to the stat function of the imagestat class. Step 4: Print the median of the pixels. サンプルコード from