我有一个尺寸为612x408
(widthxheight)的图像。
当我使用opencv cv2.imread(/path/to/img)
打开它时,它向我显示(408,612,3)
。
这不是问题
当我cv2.imshow()
时,它像正常水平矩形一样正确显示宽度大于高度的图像
我添加了mouseCallback
来获取像素位置,因此,即使我单击了图像,当我将鼠标靠近图像的右侧时,也会出现IndexError: index 560 is out of bounds for axis 0 with size 408
错误。
我搜索了SO,但找不到类似的问题
import cv2
def capture_pos(event,x,y,flags,param):
if event == cv2.EVENT_LBUTTONDOWN:
mouseX = x
mouseY = y
print('mouse clicked at x={},y={}'.format(mouseX,mouseY))
h,s,v = img[mouseX,mouseY]
print('h:{} s:{} v:{}'.format(h,s,v))
img = cv2.imread('./messi color.png')
img = cv2.cvtColor(img,cv2.COLOR_BGR2HSV)
cv2.namedWindow('get pixel color by clicking on image')
cv2.setMouseCallback('get pixel color by clicking on image',capture_pos)
cv2.imshow('get pixel color by clicking on image',img)
cv2.waitKey(0)
cv2.destroyAllWindows()
最佳答案
您得到的尺寸似乎正确。您可以使用以下方法检查图像的尺寸
print(img.shape)
您将以
(height, width)
的形式获得图像,但这可能会有些混乱,因为我们通常以宽度x高度指定图像。这是因为图像在OpenCV中存储为Numpy数组。因此,要索引图像,您可以简单地使用img[Y:X]
,因为高度是形状中的第一个条目,宽度是第二个。由于它是Numpy数组,因此我们得到
(rows,cols)
,它等于(height,width)
。