在处理图像的时候经常是读取图片以后把图片转换为灰度图。作为一个刚入坑的小白,我在这篇博客记录了四种处理的方法。
首先导入包:
import numpy as np
import cv2
import tensorflow as tf
from PIL import Image
方法一:在使用OpenCV读取图片的同时将图片转换为灰度图:
img = cv2.imread(imgfile, cv2.IMREAD_GRAYSCALE)
print(cv2.imread(imgfile, cv2.IMREAD_GRAYSCALE)结果如下:)
print('大小:{}'.forma
1