enter code here
您好
我正在使用python 2.7,cv2,我需要从图像中获取所有像素值。首先,我将图像调整为(62,74)的分辨率。我这样做的方式是:
import cv2
import numpy as np
img = cv2.imread("photo1.jpg")
resized = cv2.resize(img,(62,74), interpolation = cv2.INTER_AREA)
pix = resized[62,74]
print pix
但每次我运行代码时都会返回:
pix = resized[62,74]
IndexError: index 62 is out of bounds for axis 1 with size 62
我不知道它有什么问题......
由于