python数据读取——CV为什么读取都是三通道
https://blog.csdn.net/qq_41629756/article/details/105076943
import cv2
img_path = r'灰度图'
img = cv2.imread(img_path)
print(img.shape)
# 如果我将图片灰度处理
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
print(gray.shape)
"""
img.shape返回的结果:
(201, 190, 3)
gr.
原创
2021-05-22 12:18:24 ·
690 阅读 ·
0 评论