Fix 4 points and shortcut bugs
This commit is contained in:
parent
92207b9e0d
commit
ee9c1bcfc9
|
@ -435,7 +435,7 @@ class MainWindow(QMainWindow, WindowMixin):
|
|||
|
||||
######## New actions #######
|
||||
AutoRec = action(getStr('autoRecognition'), self.autoRecognition,
|
||||
'Ctrl+Shift+A', 'Auto', getStr('autoRecognition'), enabled=False)
|
||||
'', 'Auto', getStr('autoRecognition'), enabled=False)
|
||||
|
||||
reRec = action(getStr('reRecognition'), self.reRecognition,
|
||||
'Ctrl+Shift+R', 'reRec', getStr('reRecognition'), enabled=False)
|
||||
|
|
|
@ -109,7 +109,6 @@ python3 PPOCRLabel.py
|
|||
|
||||
| Shortcut keys | Description |
|
||||
| ------------------------ | ------------------------------------------------ |
|
||||
| Ctrl + Shift + A | Automatically label all unchecked images |
|
||||
| Ctrl + Shift + R | Re-recognize all the labels of the current image |
|
||||
| W | Create a rect box |
|
||||
| Q | Create a four-points box |
|
||||
|
|
|
@ -96,7 +96,6 @@ python3 PPOCRLabel.py --lang ch
|
|||
|
||||
| 快捷键 | 说明 |
|
||||
| ---------------- | ---------------------------- |
|
||||
| Ctrl + shift + A | 自动标注所有未确认过的图片 |
|
||||
| Ctrl + shift + R | 对当前图片的所有标记重新识别 |
|
||||
| W | 新建矩形框 |
|
||||
| Q | 新建四点框 |
|
||||
|
|
|
@ -83,10 +83,7 @@ class Shape(object):
|
|||
|
||||
def addPoint(self, point):
|
||||
if not self.reachMaxPoints(): # 4个点时发出close信号
|
||||
if self.points and point == self.points[0]:
|
||||
self.close()
|
||||
else:
|
||||
self.points.append(point)
|
||||
self.points.append(point)
|
||||
|
||||
def popPoint(self):
|
||||
if self.points:
|
||||
|
|
Loading…
Reference in New Issue