2018-08-03から1日間の記事一覧

Python / PIL / 画像の読み込み、サイズの取得、RGB値の取得、輝度の計算、ヒストグラムの表示

PIL

from PIL import Image import matplotlib.pyplot as plt import numpy as np class IMAGE: def __init__(self, imgPath): self.srcImg = Image.open(imgPath) # 画像を読み込む。 self.numOfPixels = self.srcImg.width * self.srcImg.height # 全画素数を…