python圖像處理(3)圖像的通道、變換和剪切

1,通道html from PIL import Image import matplotlib.pyplot as plt # 能夠理解爲畫板 import numpy as np img = Image.open('c:/2.jpg') # 一:圖像通道 # 1.轉化爲灰度圖的兩種方法 gray = img.convert('L') gray = np.array(gray)
相關文章
相關標籤/搜索