我正在尝试编写保存图像功能。下面的代码预计将创建原始图像的副本作为 saved-test-image.jpg。
originalImage = "test-image.jpg"
savedImage = cv2.imwrite("saved-test-image.jpg",originalImage)
这些行的执行给出了以下结果:
Traceback (most recent call last):
File "UnitTest.py", line 159, in test_save_and_delete_image
savedImage = cv2.imwrite('unittest-images/saved-test-image.jpg', originalImage)
TypeError: img is not a numpy array, neither a scalar
这里需要改变什么?