项目场景:
TypeError: setValue(self, val: int): argument 1 has unexpected type ‘float’
使用LabelImg时突然间报错了
问题描述
突然的报错让我很意外,怎么会突然报错呢,下面是报错原因
Traceback (most recent call last):
File "D:\miniconda\envs\mm\lib\site-packages\labelImg\labelImg.py", line 1014, in zoom_request
self.add_zoom(scale * units)
File "D:\miniconda\envs\mm\lib\site-packages\labelImg\labelImg.py", line 974, in add_zoom
self.set_zoom(self.zoom_widget.value() + increment)
File "D:\miniconda\envs\mm\lib\site-packages\labelImg\labelImg.py", line 971, in set_zoom
self.zoom_widget.setValue(value)
TypeError: setValue(self, val: int): argument 1 has unexpected type 'float'
原因分析:
这个错误是因为在调用 drawLine 函数时传入了一个浮动类型(float)的参数,而该函数期望的是整数类型(int)或其他合适的类型(如 QPoint 或 QLine)。
解决方案:
按照报错上面的路径打开到canvas.py文件,右击选择打开方式–>记事本,接着搜索drawLine,可以发现有两行都使用了这个函数,全部修改:
p.drawLine(int(self.prev_point.x()), 0, int(self.prev_point.x()), int(self.pixmap.height()))
p.drawLine(0, int(self.prev_point.y()), self.pixmap.width(), int(self.prev_point.y()))
这个文件还有一处要修改
p.drawRect(int(left_top.x()), int(left_top.y()), int(rect_width), int(rect_height))
完成之后再次运行,发现还会报错,接着继续修改。
按照报错路径,找到labelImg.py文件,同样的方式,右击选择打开方式–>记事本,不同的是搜索bar.setValue,更改,保存:
bar.setValue(int(bar.value() + bar.singleStep() * units))
至此,重新打开LabelImg,成功可以使用!