如何在用Python编写的GUI中显示一个文件夹中的多个图像?

时间:2018-11-22 03:36:43

标签: python-3.7

我正在尝试将文件夹中的垃圾图像显示到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]) )

0 个答案:

没有答案