我正在尝试编写一个将图像作为输入的函数,然后返回一个将带有索引并返回该索引颜色的函数。这是我到目前为止所得到的:
and not exists (select * from inserted
让我们尝试一下:
def generator(image):
def index2color(index1):
return image[index1]
return index2color
因此,它将返回字符串中的索引,但不返回图片的索引。任何建议将不胜感激!
答案 0 :(得分:1)
您需要先将图像读入适当的对象,然后对图像对象进行操作。像这样:
flower_img = cv2.imread('flower.jpg')
generator2 = generator(flower_img)
考虑通过此方法更好地了解您可以做什么:https://docs.opencv.org/3.1.0/d3/df2/tutorial_py_basic_ops.html