我正在尝试将文件夹中的垃圾图像显示到GUI页面上,并在其下方添加标签。即使我以为我输入了名为“垃圾箱”的文件夹的地址,我仍然收到“没有这样的文件或目录”错误
我在下面附加了我的代码:
mypath='home/xinyi/Documents/Python/Trash'
onlyfiles = [ f for f in listdir(mypath) if isfile(join(mypath,f)) ]
images = numpy.empty(len(onlyfiles), dtype=object)
for n in range(0, len(onlyfiles)):
images[n] = cv2.imread( join(mypath,onlyfiles[n]) )