labelme读取文件顺序

labelme版本4.5.10
labelme的目录结构
labelme读取文件顺序_第1张图片

  1. labelme通过在__main__.py中调用app.py,启动程序
  2. 读取文件列表的部分在app.py的imageList函数中
    def imageList(self):
        lst = []
        for i in range(self.fileListWidget.count()):
            item = self.fileListWidget.item(i)
            lst.append(item.text())
        return lst

你可能感兴趣的:(python)