Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道有类似的问题,我已经检查过了,但是没有用。我尝试使用以下代码在 google colab 中打开带有 cv2 的图像:
path='/content/group.jpg' img = cv2.imread(path) plt.imshow(img) plt.show()
但这是错误的。
我检查了图像路径,它是正确的。谁能帮帮我吗?谢谢 :)
手头的问题与图像的路径有关。
您的cv2.imread路径和path变量可能指向不同的位置。尝试在文件浏览器中找到您想要的图像。如果然后右键单击它,您将能够复制文件的路径。您必须使用该路径来加载图像并且它会起作用。
cv2.imread
path