labelme版本4.5.10
labelme的目录结构

- labelme通过在__main__.py中调用app.py,启动程序
- 读取文件列表的部分在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
本文主要介绍了LabelMe4.5.10版本中,如何通过`__main__.py`调用`app.py`中的imageList函数,该函数负责读取并整理文件列表,以实现程序对文件的处理。
6911

被折叠的 条评论
为什么被折叠?



