Grwy

Results 2 comments of Grwy

![image](https://github.com/CVHub520/X-AnyLabeling/assets/118507922/ddf23ea1-a96b-4d88-a7a5-1084a97fcf2c) 起始点能否缩小一点,或把外围扩大一圈的区域去除 标注者嫌点太大挡住标注目标了

解决方案: https://github.com/CVHub520/X-AnyLabeling/blob/main/anylabeling/views/labeling/shape.py 设置线粗细 ```python # Try using integer sizes for smoother drawing(?) # pen.setWidth(max(1, int(round(2.0 / self.scale)))) # 固定设置线的粗细 pen.setWidth(1) ``` 与设置点大小 ```python # d = self.point_size / self.scale #...