os.walk递归访问文件夹非常慢

问题描述 投票:2回答:2

我的数据集有超过1000个文件夹,我使用os.walk递归访问每个文件夹中的每个图像。 os.walk适用于几个文件夹,但加载1000多个文件夹非常慢。我需要替代解决方案或任何可以处理此问题的东西。 您可以看到类似的代码:

def run(dirname, img):
    data = img.load()
    width, height = img.size
    output_img = Image.new("RGB", (100, 100))
    Zero=np.zeros(shape=(100, 100), dtype=np.uint8)

    for (x, y) in labels:
        component = uf.find(labels[(x, y)])
        labels[(x, y)] = component
        path = 'D:/Python36/Fold/'
        if labels[(x, y)] == 0:
            Zero[y][x] = 255
            Zeroth = Image.fromarray(Zero)
            Zeroth.save(os.path.join(dirname, 'Zero.png'), 'png')


def main():
    path = "D:/Python36/Fold/"
    for root, dirs, files in os.walk(path):
        for file_ in files:
            img = Image.open(os.path.join(root, file_))
            img = img.point(lambda p: p > 190 and 255)
            img = img.convert('1')
            (labels, output_img) = run(root, img)


if __name__ == "__main__":
    main()
python python-3.x subdirectory os.walk scandir
2个回答
1
投票

调试代码并按顺序执行文件您可以使用sorted(os.walk(path))并检查代码减慢的文件。 检查一下它可能help how os.walk works


2
投票

你的问题不明确,但Python有os.scandir不会在每个文件上调用stat并且速度更快。 Related doc

旧Python版本的PyPI包(<3.5)https://pypi.python.org/pypi/scandir

© www.soinside.com 2019 - 2024. All rights reserved.