You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When attempting to import image files, the app crashes with the following error:
File "/Users/sm/Documents/repos/anylabeling/.venv/lib/python3.10/site-packages/anylabeling/views/labeling/widgets/canvas.py", line 263, in mouseMoveEvent
pos = self.transform_pos(ev.localPos())
File "/Users/sm/Documents/repos/anylabeling/.venv/lib/python3.10/site-packages/anylabeling/views/labeling/widgets/canvas.py", line 899, in transform_pos
return point / self.scale - self.offset_to_center()
File "/Users/sm/Documents/repos/anylabeling/.venv/lib/python3.10/site-packages/anylabeling/views/labeling/widgets/canvas.py", line 911, in offset_to_center
return QtCore.QPoint(x, y)
TypeError: arguments did not match any overloaded call:
QPoint(): too many arguments
QPoint(int, int): argument 1 has unexpected type 'float'
QPoint(QPoint): argument 1 has unexpected type 'float'
I've tried to modify the offset_to_center file so that it passes int to the QPoint function, but I still receive the same error.
The text was updated successfully, but these errors were encountered:
RectLabel is an offline image annotation tool for object detection and segmentation.
Although this is not an open source program, you can label polygons using Segment Anything models.
Steps to reproduce:
When attempting to import image files, the app crashes with the following error:
I've tried to modify the offset_to_center file so that it passes int to the QPoint function, but I still receive the same error.
The text was updated successfully, but these errors were encountered: