python中opencv像素点 rgb
时间: 2023-11-14 18:09:35 浏览: 99
image-properties.zip
在Python中,使用OpenCV读取图像后,可以使用以下代码获取像素点的RGB值:
```python
import cv2
# 读取图像
img = cv2.imread('image.jpg')
# 获取像素点的RGB值
pixel = img[100, 100]
print(pixel)
```
其中,`img[100, 100]`表示获取图像中坐标为(100, 100)的像素点的RGB值。
阅读全文