图像灰度化python代码
时间: 2023-06-14 09:04:03 浏览: 255
RTCP图像灰度化算法
下面是将一张彩色图片转换成灰度图像的 Python 代码:
```python
import cv2
# 读取彩色图像
img = cv2.imread('image.jpg')
# 转换为灰度图像
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
# 显示灰度图像
cv2.imshow('Gray Image', gray)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
其中,`cv2.imread()` 函数用于读取图像,`cv2.cvtColor()` 函数用于颜色空间转换,`cv2.imshow()` 函数用于显示图像,`cv2.waitKey()` 函数用于等待用户按下按键,`cv2.destroyAllWindows()` 函数用于关闭所有窗口。
阅读全文