python获取图像坐标
时间: 2023-05-13 19:06:22 浏览: 92
python获取窗口句柄坐标.zip_python 教程
可以使用Python的OpenCV库来获取图像坐标。具体的代码实现可以参考以下示例:
```python
import cv2
# 读取图像
img = cv2.imread('image.jpg')
# 获取图像的宽度和高度
height, width, channels = img.shape
# 获取某个像素点的坐标
x = 100
y = 200
pixel = img[y, x]
# 显示图像
cv2.imshow('image', img)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
在上面的代码中,我们首先使用`cv2.imread()`函数读取了一张
阅读全文