gpt4 book ai didi

python - 如何在开放式简历中与BGR图像像素值进行比较?

转载 作者:行者123 更新时间:2023-12-02 17:56:03 24 4
gpt4 key购买 nike

我想在这样的一行中比较像素值:

for x in range (xRang[0] ,xRang[1]):
y = s_p[0] + dy * (x - xRang[0])/ dx # this is line formula. s_p is start point [y,x]

if(i[round(y),x] == 0 || test[round(y),x] != [255,255,255]):
return 0
我上类是因为灰度图像。因此,像素值为0或255。
我可以比较一些值(value)。
但是测试是bgr图像。因此,如果条件不起作用,则在该 test[round(y),x] != [255,255,255]中。

最佳答案

尝试使用(test[round(y), x] == np.array([255, 255, 255])).sum() != 3作为条件。我假设test[round(y), x]给出了3个值的numpy数组。

关于python - 如何在开放式简历中与BGR图像像素值进行比较?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64639278/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com