python判断黑白图像
1 | def is_grayscale(img:Image): |
上述代码通过计算红、绿、蓝三种颜色的和,如果三个和的平均值和任意一个相等(代码中取的是第0个),那么认为是灰度图(因为灰度图r=g=b)
rgb - Python Fastest way to check if image is greyscale or color? - Stack Overflow
1 | def is_grayscale(img:Image): |
上述代码通过计算红、绿、蓝三种颜色的和,如果三个和的平均值和任意一个相等(代码中取的是第0个),那么认为是灰度图(因为灰度图r=g=b)
rgb - Python Fastest way to check if image is greyscale or color? - Stack Overflow
最后更新时间:
感谢浏览