我有一个存储在 numpy 数组中的图像,由以下结果产生imread()
:
>>> ndim
array([[[ 0, 0, 0],
[ 4, 0, 0],
[ 8, 0, 0],
...,
[247, 0, 28],
[251, 0, 28],
[255, 0, 28]],
[[ 0, 255, 227],
[ 4, 255, 227],
[ 8, 255, 227],
...,
[247, 255, 255],
[251, 255, 255],
[255, 255, 255]]], dtype=uint8)
>>> ndim.shape
(512, 512, 3)
我想有效地找到具有特定颜色值的像素的(x,y)坐标(或坐标),例如
>>> c
array([ 32, 32, 109], dtype=uint8)
>>> ndim[200,200]
array([ 32, 32, 109], dtype=uint8)
>>> ndim.T[0, 200, 200]
32
>>> ndim.T[1, 200, 200]
32
>>> ndim.T[2, 200, 200]
109
...在这种情况下,我知道 (200, 200) 处的像素具有 RGB 值 (32, 32, 109) - 我可以对此进行测试。
我想要做的是查询 ndarray 的像素值并取回坐标。在上述情况下,假定函数find_pixel(c)
将返回 (200, 200)。
理想情况下,此find_pixel()
函数将返回坐标元组列表,而不仅仅是它找到的第一个值。
我看过 numpy 的“花式索引”,这让我非常困惑……我想弄清楚这一点的大部分尝试都过于紧张和不必要的巴洛克式。
我确信这里有一个非常简单的方法可以忽略。最好的方法是什么 - 有没有比我概述的更好的机制来获得这些值?