我要在这张图像的左手边找到8个色块中的每一个的RGB值,但是如何找到该特定点的像素坐标呢? Here is the image
我尝试了下面的代码,所以我拥有数组中所有像素的RGB值。
from PIL import Image
import numpy as np
img = Image.open("white_balance_example_color_checkers.jpg")
width , height = img.size
imgdata=np.array(img.getdata())
但是我怎么找到那个特定点呢? 据我所知,图像的大小为1000 * 667,我假设像素(x,y)的RGB值将在行号(y * 1000 + x)中!!
那真的是最好的方法吗?还是我该怎么做呢?
谢谢!