当前位置:   article > 正文

【已解决】labelme编辑label时,闪退;报错“IndexError: list index out of range”_labelme ai闪退

labelme ai闪退

当前虚拟环境:

python     3.6.13

labelme   5.0.1

pip           21.3.1

1.IndexError: list index out of range

labelme编辑label时,闪退,如下:

 解决方法:

修改文件  D:\Anaconda3\envs\zhmpytorch\Lib\site-packages\labelme\app.py

1075行添加代码,如下:

  1. if not self.uniqLabelList.findItemsByLabel(shape.label):
  2. print('shape.label:', shape.label, 'group_id:', shape.group_id)
  3. item = self.uniqLabelList.createItemFromLabel(shape.label)
  4. self.uniqLabelList.addItem(item)
  5. rgb = self._get_rgb_by_label(shape.label)
  6. self.uniqLabelList.setItemLabel(item, shape.label, rgb)

1085行删除下面代码:

  1. if not self.uniqLabelList.findItemsByLabel(shape.label):
  2. item = QtWidgets.QListWidgetItem()
  3. item.setData(Qt.UserRole, shape.label)
  4. self.uniqLabelList.addItem(item)

注意缩进一定要用tab,不可是四个空格。

 

其他问题及解决方法:

2.TabError: inconsistent use of tabs and spaces in indentation

解决方法:

主要是新添加代码的缩进,只能用tab,不可用空格。 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/304371
推荐阅读
相关标签
  

闽ICP备14008679号