def test(pos,target):
x, y = pos
color = img[x, y]
....
1
inhzus 2019-10-15 21:51:17 +08:00
如果没有理解错的话,pos 类型为 tuple,img[x, y] 调用的内置函数为 __getitem__,那就直接 img[pos] 就好了。
如图 ![image.png]( https://i.loli.net/2019/10/15/gTp1e3W8oaDAdvu.png) |
2
inhzus 2019-10-15 21:53:04 +08:00 1
@inhzus #1 上一张复制的有些问题,见这张 ![image.png]( https://i.loli.net/2019/10/15/RkbDN6miOwptyzH.png)
|
3
JCZ2MkKb5S8ZX9pq OP @inhzus 难怪,我传的是 list,会报错 TypeError: argument must be sequence of length 2
转成 tuple 就可以了,感谢。 |