我在此程序中使用 Google Colab 和python,我想从计算机中导入并显示图像(最后显示)。我尝试通过将图像上传到Google colab来导入该图像,然后尝试使用imread()和imshow()函数显示该图像。但是,当我运行该程序时,它要求我选择需要上传的文件,当我选择该文件并单击“上传”时,出现以下错误提示。你能帮忙吗?
“对象似乎不是8位字符串路径或Python 文件状对象”
import matplotlib.pyplot as plt
import matplotlib.image as mpimg
from google.colab import files
from IPython.display import Image
uploaded = files.upload()
test = Image("C:/Users/cinar/Desktop/test/car/audi.jpg")
img=mpimg.imread(test)
imgplot = plt.imshow(test)
plt.show()