python计算灰度均值
时间: 2023-05-12 21:07:29 浏览: 275
OpenCV计算图像灰度均值
5星 · 资源好评率100%
可以使用Pillow库中的Image模块来计算灰度均值,代码如下:
```python
from PIL import Image
def calculate_gray_scale(image_path):
image = Image.open(image_path).convert('L')
width, height = image.size
total = 0
for x in range(width):
for y in range(height):
total += image.getpixel((x, y))
return total / (width * height)
```
其中,image_path是图片的路径,函数返回的是灰度均值。
阅读全文