PPOCRLabel.py 93.8 KB
Newer Older
Leif's avatar
Leif committed
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright (c) <2015-Present> Tzutalin
# Copyright (C) 2013  MIT, Computer Science and Artificial Intelligence Laboratory. Bryan Russell, Antonio Torralba,
# William T. Freeman. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
# associated documentation files (the "Software"), to deal in the Software without restriction, including without
# limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
# Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of
# the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
# NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
# SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
# CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.

14
# !/usr/bin/env python
Leif's avatar
Leif committed
15
16
17
18
19
# -*- coding: utf-8 -*-
# pyrcc5 -o libs/resources.py resources.qrc
import argparse
import ast
import codecs
20
import json
Leif's avatar
Leif committed
21
22
23
24
25
26
import os.path
import platform
import subprocess
import sys
from functools import partial

27
28
29
30
31
32
33
try:
    from PyQt5 import QtCore, QtGui, QtWidgets
    from PyQt5.QtGui import *
    from PyQt5.QtCore import *
    from PyQt5.QtWidgets import *
except ImportError:
    print("Please install pyqt5...")
34

Leif's avatar
Leif committed
35
__dir__ = os.path.dirname(os.path.abspath(__file__))
36

Leif's avatar
Leif committed
37
38
sys.path.append(__dir__)
sys.path.append(os.path.abspath(os.path.join(__dir__, '../..')))
39
sys.path.append(os.path.abspath(os.path.join(__dir__, '../PaddleOCR')))
Leif's avatar
Leif committed
40
41
42
43
44
sys.path.append("..")

from paddleocr import PaddleOCR
from libs.constants import *
from libs.utils import *
45
from libs.labelColor import label_colormap
Leif's avatar
Leif committed
46
from libs.settings import Settings
47
from libs.shape import Shape, DEFAULT_LINE_COLOR, DEFAULT_FILL_COLOR, DEFAULT_LOCK_COLOR
Leif's avatar
Leif committed
48
49
50
51
52
53
54
55
from libs.stringBundle import StringBundle
from libs.canvas import Canvas
from libs.zoomWidget import ZoomWidget
from libs.autoDialog import AutoDialog
from libs.labelDialog import LabelDialog
from libs.colorDialog import ColorDialog
from libs.ustr import ustr
from libs.hashableQListWidgetItem import HashableQListWidgetItem
Leif's avatar
Leif committed
56
from libs.editinlist import EditInList
57
58
from libs.unique_label_qlist_widget import UniqueLabelQListWidget
from libs.keyDialog import KeyDialog
Leif's avatar
Leif committed
59
60
61

__appname__ = 'PPOCRLabel'

62
63
LABEL_COLORMAP = label_colormap()

Leif's avatar
Leif committed
64

65
class MainWindow(QMainWindow):
Leif's avatar
Leif committed
66
67
    FIT_WINDOW, FIT_WIDTH, MANUAL_ZOOM = list(range(3))

68
69
70
    def __init__(self,
                 lang="ch",
                 gpu=False,
71
                 kie_mode=False,
72
                 default_filename=None,
HinGwenWoong's avatar
HinGwenWoong committed
73
                 default_predefined_class_file=None,
74
                 default_save_dir=None):
Leif's avatar
Leif committed
75
76
        super(MainWindow, self).__init__()
        self.setWindowTitle(__appname__)
77
78
        self.setWindowState(Qt.WindowMaximized)  # set window max
        self.activateWindow()  # PPOCRLabel goes to the front when activate
Leif's avatar
Leif committed
79
80
81

        # Load setting in the main thread
        self.settings = Settings()
82
        self.settings.load()
Leif's avatar
Leif committed
83
84
        settings = self.settings
        self.lang = lang
85
        self.kie_mode = kie_mode
86
        self.key_previous_text = ""
Leif's avatar
Leif committed
87
88
89
        # Load string bundle for i18n
        if lang not in ['ch', 'en']:
            lang = 'en'
90
        self.stringBundle = StringBundle.getBundle(localeStr='zh-CN' if lang == 'ch' else 'en')  # 'en'
Leif's avatar
Leif committed
91
92
        getStr = lambda strId: self.stringBundle.getString(strId)

93
94
95
96
97
98
99
100
        self.defaultSaveDir = default_save_dir
        self.ocr = PaddleOCR(use_pdserving=False,
                             use_angle_cls=True,
                             det=True,
                             cls=True,
                             use_gpu=gpu,
                             lang=lang,
                             show_log=False)
Leif's avatar
Leif committed
101
102
103
104
105
106
107
108
109
110
111

        if os.path.exists('./data/paddle.png'):
            result = self.ocr.ocr('./data/paddle.png', cls=True, det=True)

        # For loading all image under a directory
        self.mImgList = []
        self.mImgList5 = []
        self.dirname = None
        self.labelHist = []
        self.lastOpenDir = None
        self.result_dic = []
112
        self.result_dic_locked = []
Leif's avatar
Leif committed
113
114
115
116
117
118
119
120
121
122
123
124
125
126
        self.changeFileFolder = False
        self.haveAutoReced = False
        self.labelFile = None
        self.currIndex = 0

        # Whether we need to save or not.
        self.dirty = False

        self._noSelectionSlot = False
        self._beginner = True
        self.screencastViewer = self.getAvailableScreencastViewer()
        self.screencast = "https://github.com/PaddlePaddle/PaddleOCR"

        # Load predefined classes to the list
HinGwenWoong's avatar
HinGwenWoong committed
127
        self.loadPredefinedClasses(default_predefined_class_file)
Leif's avatar
Leif committed
128
129
130
131
132
133
134
135
136
137

        # Main widgets and related state.
        self.labelDialog = LabelDialog(parent=self, listItem=self.labelHist)
        self.autoDialog = AutoDialog(parent=self)

        self.itemsToShapes = {}
        self.shapesToItems = {}
        self.itemsToShapesbox = {}
        self.shapesToItemsbox = {}
        self.prevLabelText = getStr('tempLabel')
Leif's avatar
Leif committed
138
        self.noLabelText = getStr('nullLabel')
Leif's avatar
Leif committed
139
140
        self.model = 'paddle'
        self.PPreader = None
Leif's avatar
Leif committed
141
        self.autoSaveNum = 5
Leif's avatar
Leif committed
142

143
        #  ================== File List  ==================
HinGwenWoong's avatar
HinGwenWoong committed
144
145
146
147

        filelistLayout = QVBoxLayout()
        filelistLayout.setContentsMargins(0, 0, 0, 0)

Leif's avatar
Leif committed
148
149
150
151
        self.fileListWidget = QListWidget()
        self.fileListWidget.itemClicked.connect(self.fileitemDoubleClicked)
        self.fileListWidget.setIconSize(QSize(25, 25))
        filelistLayout.addWidget(self.fileListWidget)
152

Leif's avatar
Leif committed
153
154
155
156
157
158
159
160
161
162
163
164
        self.AutoRecognition = QToolButton()
        self.AutoRecognition.setToolButtonStyle(Qt.ToolButtonTextBesideIcon)
        self.AutoRecognition.setIcon(newIcon('Auto'))
        autoRecLayout = QHBoxLayout()
        autoRecLayout.setContentsMargins(0, 0, 0, 0)
        autoRecLayout.addWidget(self.AutoRecognition)
        autoRecContainer = QWidget()
        autoRecContainer.setLayout(autoRecLayout)
        filelistLayout.addWidget(autoRecContainer)

        fileListContainer = QWidget()
        fileListContainer.setLayout(filelistLayout)
165
        self.fileListName = getStr('fileList')
HinGwenWoong's avatar
HinGwenWoong committed
166
167
168
169
        self.fileDock = QDockWidget(self.fileListName, self)
        self.fileDock.setObjectName(getStr('files'))
        self.fileDock.setWidget(fileListContainer)
        self.addDockWidget(Qt.LeftDockWidgetArea, self.fileDock)
170

HinGwenWoong's avatar
HinGwenWoong committed
171
172
        #  ================== Key List  ==================
        if self.kie_mode:
173
            # self.keyList = QListWidget()
174
            self.keyList = UniqueLabelQListWidget()
HinGwenWoong's avatar
HinGwenWoong committed
175
176
177
178
179
180
181
182
183
184
            self.keyList.itemSelectionChanged.connect(self.keyListSelectionChanged)
            self.keyList.itemDoubleClicked.connect(self.editBox)
            # Connect to itemChanged to detect checkbox changes.
            self.keyList.itemChanged.connect(self.keyListItemChanged)
            self.keyListDockName = getStr('keyListTitle')
            self.keyListDock = QDockWidget(self.keyListDockName, self)
            self.keyListDock.setWidget(self.keyList)
            self.keyListDock.setFeatures(QDockWidget.NoDockWidgetFeatures)
            filelistLayout.addWidget(self.keyListDock)

185
        #  ================== Right Area  ==================
Leif's avatar
Leif committed
186
187
188
        listLayout = QVBoxLayout()
        listLayout.setContentsMargins(0, 0, 0, 0)

HinGwenWoong's avatar
HinGwenWoong committed
189
        # Buttons
Leif's avatar
Leif committed
190
191
192
193
194
195
196
197
198
199
200
201
        self.editButton = QToolButton()
        self.reRecogButton = QToolButton()
        self.reRecogButton.setIcon(newIcon('reRec', 30))
        self.reRecogButton.setToolButtonStyle(Qt.ToolButtonTextBesideIcon)

        self.newButton = QToolButton()
        self.newButton.setToolButtonStyle(Qt.ToolButtonTextBesideIcon)
        self.SaveButton = QToolButton()
        self.SaveButton.setToolButtonStyle(Qt.ToolButtonTextBesideIcon)
        self.DelButton = QToolButton()
        self.DelButton.setToolButtonStyle(Qt.ToolButtonTextBesideIcon)

HinGwenWoong's avatar
HinGwenWoong committed
202
203
204
205
206
207
        leftTopToolBox = QHBoxLayout()
        leftTopToolBox.addWidget(self.newButton)
        leftTopToolBox.addWidget(self.reRecogButton)
        leftTopToolBoxContainer = QWidget()
        leftTopToolBoxContainer.setLayout(leftTopToolBox)
        listLayout.addWidget(leftTopToolBoxContainer)
Leif's avatar
Leif committed
208

209
        #  ================== Label List  ==================
Leif's avatar
Leif committed
210
        # Create and add a widget for showing current label items
Leif's avatar
Leif committed
211
        self.labelList = EditInList()
Leif's avatar
Leif committed
212
213
214
        labelListContainer = QWidget()
        labelListContainer.setLayout(listLayout)
        self.labelList.itemSelectionChanged.connect(self.labelSelectionChanged)
Leif's avatar
Leif committed
215
        self.labelList.clicked.connect(self.labelList.item_clicked)
216

Leif's avatar
Leif committed
217
218
        # Connect to itemChanged to detect checkbox changes.
        self.labelList.itemChanged.connect(self.labelItemChanged)
219
220
        self.labelListDockName = getStr('recognitionResult')
        self.labelListDock = QDockWidget(self.labelListDockName, self)
Leif's avatar
Leif committed
221
222
223
224
        self.labelListDock.setWidget(self.labelList)
        self.labelListDock.setFeatures(QDockWidget.NoDockWidgetFeatures)
        listLayout.addWidget(self.labelListDock)

225
        #  ================== Detection Box  ==================
Leif's avatar
Leif committed
226
227
        self.BoxList = QListWidget()

228
        # self.BoxList.itemActivated.connect(self.boxSelectionChanged)
Leif's avatar
Leif committed
229
230
231
232
        self.BoxList.itemSelectionChanged.connect(self.boxSelectionChanged)
        self.BoxList.itemDoubleClicked.connect(self.editBox)
        # Connect to itemChanged to detect checkbox changes.
        self.BoxList.itemChanged.connect(self.boxItemChanged)
233
234
        self.BoxListDockName = getStr('detectionBoxposition')
        self.BoxListDock = QDockWidget(self.BoxListDockName, self)
Leif's avatar
Leif committed
235
236
237
238
        self.BoxListDock.setWidget(self.BoxList)
        self.BoxListDock.setFeatures(QDockWidget.NoDockWidgetFeatures)
        listLayout.addWidget(self.BoxListDock)

239
        #  ================== Lower Right Area  ==================
Leif's avatar
Leif committed
240
241
242
243
244
245
246
247
248
249
250
        leftbtmtoolbox = QHBoxLayout()
        leftbtmtoolbox.addWidget(self.SaveButton)
        leftbtmtoolbox.addWidget(self.DelButton)
        leftbtmtoolboxcontainer = QWidget()
        leftbtmtoolboxcontainer.setLayout(leftbtmtoolbox)
        listLayout.addWidget(leftbtmtoolboxcontainer)

        self.dock = QDockWidget(getStr('boxLabelText'), self)
        self.dock.setObjectName(getStr('labels'))
        self.dock.setWidget(labelListContainer)

251
        #  ================== Zoom Bar  ==================
252
253
254
255
256
257
258
259
        self.imageSlider = QSlider(Qt.Horizontal)
        self.imageSlider.valueChanged.connect(self.CanvasSizeChange)
        self.imageSlider.setMinimum(-9)
        self.imageSlider.setMaximum(510)
        self.imageSlider.setSingleStep(1)
        self.imageSlider.setTickPosition(QSlider.TicksBelow)
        self.imageSlider.setTickInterval(1)

Leif's avatar
Leif committed
260
261
        op = QGraphicsOpacityEffect()
        op.setOpacity(0.2)
262
263
264
265
266
267
268
269
270
        self.imageSlider.setGraphicsEffect(op)

        self.imageSlider.setStyleSheet("background-color:transparent")
        self.imageSliderDock = QDockWidget(getStr('ImageResize'), self)
        self.imageSliderDock.setObjectName(getStr('IR'))
        self.imageSliderDock.setWidget(self.imageSlider)
        self.imageSliderDock.setFeatures(QDockWidget.DockWidgetFloatable)
        self.imageSliderDock.setAttribute(Qt.WA_TranslucentBackground)
        self.addDockWidget(Qt.RightDockWidgetArea, self.imageSliderDock)
Leif's avatar
Leif committed
271
272
273
274

        self.zoomWidget = ZoomWidget()
        self.colorDialog = ColorDialog(parent=self)
        self.zoomWidgetValue = self.zoomWidget.value()
275
276
277

        self.msgBox = QMessageBox()

278
        #  ================== Thumbnail ==================
Leif's avatar
Leif committed
279
280
281
282
283
        hlayout = QHBoxLayout()
        m = (0, 0, 0, 0)
        hlayout.setSpacing(0)
        hlayout.setContentsMargins(*m)
        self.preButton = QToolButton()
284
        self.preButton.setIcon(newIcon("prev", 40))
Leif's avatar
Leif committed
285
286
287
        self.preButton.setIconSize(QSize(40, 100))
        self.preButton.clicked.connect(self.openPrevImg)
        self.preButton.setStyleSheet('border: none;')
288
        self.preButton.setShortcut('a')
Leif's avatar
Leif committed
289
290
291
292
293
        self.iconlist = QListWidget()
        self.iconlist.setViewMode(QListView.IconMode)
        self.iconlist.setFlow(QListView.TopToBottom)
        self.iconlist.setSpacing(10)
        self.iconlist.setIconSize(QSize(50, 50))
294
        self.iconlist.setMovement(QListView.Static)
Leif's avatar
Leif committed
295
296
        self.iconlist.setResizeMode(QListView.Adjust)
        self.iconlist.itemClicked.connect(self.iconitemDoubleClicked)
297
        self.iconlist.setStyleSheet("QListWidget{ background-color:transparent; border: none;}")
Leif's avatar
Leif committed
298
299
300
301
302
303
        self.iconlist.setHorizontalScrollBarPolicy(Qt.ScrollBarAlwaysOff)
        self.nextButton = QToolButton()
        self.nextButton.setIcon(newIcon("next", 40))
        self.nextButton.setIconSize(QSize(40, 100))
        self.nextButton.setStyleSheet('border: none;')
        self.nextButton.clicked.connect(self.openNextImg)
304
        self.nextButton.setShortcut('d')
305

Leif's avatar
Leif committed
306
307
308
309
310
311
312
        hlayout.addWidget(self.preButton)
        hlayout.addWidget(self.iconlist)
        hlayout.addWidget(self.nextButton)

        iconListContainer = QWidget()
        iconListContainer.setLayout(hlayout)
        iconListContainer.setFixedHeight(100)
313

314
        #  ================== Canvas ==================
Leif's avatar
Leif committed
315
316
317
318
319
320
321
322
323
324
325
326
327
328
        self.canvas = Canvas(parent=self)
        self.canvas.zoomRequest.connect(self.zoomRequest)
        self.canvas.setDrawingShapeToSquare(settings.get(SETTING_DRAW_SQUARE, False))

        scroll = QScrollArea()
        scroll.setWidget(self.canvas)
        scroll.setWidgetResizable(True)
        self.scrollBars = {
            Qt.Vertical: scroll.verticalScrollBar(),
            Qt.Horizontal: scroll.horizontalScrollBar()
        }
        self.scrollArea = scroll
        self.canvas.scrollRequest.connect(self.scrollRequest)

Leif's avatar
Leif committed
329
        self.canvas.newShape.connect(partial(self.newShape, False))
Leif's avatar
Leif committed
330
331
332
333
334
335
336
        self.canvas.shapeMoved.connect(self.updateBoxlist)  # self.setDirty
        self.canvas.selectionChanged.connect(self.shapeSelectionChanged)
        self.canvas.drawingPolygon.connect(self.toggleDrawingSensitive)

        centerLayout = QVBoxLayout()
        centerLayout.setContentsMargins(0, 0, 0, 0)
        centerLayout.addWidget(scroll)
337
338
339
        centerLayout.addWidget(iconListContainer, 0, Qt.AlignCenter)
        centerContainer = QWidget()
        centerContainer.setLayout(centerLayout)
Leif's avatar
Leif committed
340

341
342
        self.setCentralWidget(centerContainer)
        self.addDockWidget(Qt.RightDockWidgetArea, self.dock)
Leif's avatar
Leif committed
343

344
        self.dock.setFeatures(QDockWidget.DockWidgetClosable | QDockWidget.DockWidgetFloatable)
HinGwenWoong's avatar
HinGwenWoong committed
345
        self.fileDock.setFeatures(QDockWidget.NoDockWidgetFeatures)
Leif's avatar
Leif committed
346

347
        #  ================== Actions ==================
Leif's avatar
Leif committed
348
349
350
351
352
353
354
        action = partial(newAction, self)
        quit = action(getStr('quit'), self.close,
                      'Ctrl+Q', 'quit', getStr('quitApp'))

        opendir = action(getStr('openDir'), self.openDirDialog,
                         'Ctrl+u', 'open', getStr('openDir'))

355
        open_dataset_dir = action(getStr('openDatasetDir'), self.openDatasetDirDialog,
356
                                  'Ctrl+p', 'open', getStr('openDatasetDir'), enabled=False)
357

Leif's avatar
Leif committed
358
        save = action(getStr('save'), self.saveFile,
Leif's avatar
Leif committed
359
                      'Ctrl+V', 'verify', getStr('saveDetail'), enabled=False)
Leif's avatar
Leif committed
360
361

        alcm = action(getStr('choosemodel'), self.autolcm,
362
                      'Ctrl+M', 'next', getStr('tipchoosemodel'))
Leif's avatar
Leif committed
363

364
        deleteImg = action(getStr('deleteImg'), self.deleteImg, 'Ctrl+Shift+D', 'close', getStr('deleteImgDetail'),
Leif's avatar
Leif committed
365
366
367
368
369
370
371
372
373
374
375
376
377
                           enabled=True)

        resetAll = action(getStr('resetAll'), self.resetAll, None, 'resetall', getStr('resetAllDetail'))

        color1 = action(getStr('boxLineColor'), self.chooseColor1,
                        'Ctrl+L', 'color_line', getStr('boxLineColorDetail'))

        createMode = action(getStr('crtBox'), self.setCreateMode,
                            'w', 'new', getStr('crtBoxDetail'), enabled=False)
        editMode = action('&Edit\nRectBox', self.setEditMode,
                          'Ctrl+J', 'edit', u'Move and edit Boxs', enabled=False)

        create = action(getStr('crtBox'), self.createShape,
378
                        'w', 'objects', getStr('crtBoxDetail'), enabled=False)
Leif's avatar
Leif committed
379
380

        delete = action(getStr('delBox'), self.deleteSelectedShape,
381
                        'Alt+X', 'delete', getStr('delBoxDetail'), enabled=False)
382

Leif's avatar
Leif committed
383
        copy = action(getStr('dupBox'), self.copySelectedShape,
Leif's avatar
Leif committed
384
                      'Ctrl+C', 'copy', getStr('dupBoxDetail'),
Leif's avatar
Leif committed
385
386
387
388
389
390
391
392
393
394
395
396
                      enabled=False)

        hideAll = action(getStr('hideBox'), partial(self.togglePolygons, False),
                         'Ctrl+H', 'hide', getStr('hideAllBoxDetail'),
                         enabled=False)
        showAll = action(getStr('showBox'), partial(self.togglePolygons, True),
                         'Ctrl+A', 'hide', getStr('showAllBoxDetail'),
                         enabled=False)

        help = action(getStr('tutorial'), self.showTutorialDialog, None, 'help', getStr('tutorialDetail'))
        showInfo = action(getStr('info'), self.showInfoDialog, None, 'help', getStr('info'))
        showSteps = action(getStr('steps'), self.showStepsDialog, None, 'help', getStr('steps'))
SLLH's avatar
SLLH committed
397
        showKeys = action(getStr('keys'), self.showKeysDialog, None, 'help', getStr('keys'))
Leif's avatar
Leif committed
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429

        zoom = QWidgetAction(self)
        zoom.setDefaultWidget(self.zoomWidget)
        self.zoomWidget.setWhatsThis(
            u"Zoom in or out of the image. Also accessible with"
            " %s and %s from the canvas." % (fmtShortcut("Ctrl+[-+]"),
                                             fmtShortcut("Ctrl+Wheel")))
        self.zoomWidget.setEnabled(False)

        zoomIn = action(getStr('zoomin'), partial(self.addZoom, 10),
                        'Ctrl++', 'zoom-in', getStr('zoominDetail'), enabled=False)
        zoomOut = action(getStr('zoomout'), partial(self.addZoom, -10),
                         'Ctrl+-', 'zoom-out', getStr('zoomoutDetail'), enabled=False)
        zoomOrg = action(getStr('originalsize'), partial(self.setZoom, 100),
                         'Ctrl+=', 'zoom', getStr('originalsizeDetail'), enabled=False)
        fitWindow = action(getStr('fitWin'), self.setFitWindow,
                           'Ctrl+F', 'fit-window', getStr('fitWinDetail'),
                           checkable=True, enabled=False)
        fitWidth = action(getStr('fitWidth'), self.setFitWidth,
                          'Ctrl+Shift+F', 'fit-width', getStr('fitWidthDetail'),
                          checkable=True, enabled=False)
        # Group zoom controls into a list for easier toggling.
        zoomActions = (self.zoomWidget, zoomIn, zoomOut,
                       zoomOrg, fitWindow, fitWidth)
        self.zoomMode = self.MANUAL_ZOOM
        self.scalers = {
            self.FIT_WINDOW: self.scaleFitWindow,
            self.FIT_WIDTH: self.scaleFitWidth,
            # Set to one to scale to 100% when loading files.
            self.MANUAL_ZOOM: lambda: 1,
        }

430
431
432
433
        #  ================== New Actions ==================
        # key list dialog
        if kie_mode:
            self.keyDialog = KeyDialog(
434
                text=getStr('keyDialogTip'),
435
436
437
438
439
440
441
442
443
444
445
                parent=self,
                labels=None,
                sort_labels=True,
                show_text_field=True,
                completion="startswith",
                fit_to_content={'column': True, 'row': False},
                flags=None
            )
        else:
            self.keyDialog = None

Leif's avatar
Leif committed
446
447
448
449
        edit = action(getStr('editLabel'), self.editLabel,
                      'Ctrl+E', 'edit', getStr('editLabelDetail'),
                      enabled=False)

450
        #  ================== New Actions ==================
Leif's avatar
Leif committed
451
        AutoRec = action(getStr('autoRecognition'), self.autoRecognition,
452
                         '', 'Auto', getStr('autoRecognition'), enabled=False)
Leif's avatar
Leif committed
453

454
        reRec = action(getStr('reRecognition'), self.reRecognition,
455
                       'Ctrl+Shift+R', 'reRec', getStr('reRecognition'), enabled=False)
Leif's avatar
Leif committed
456

457
458
459
        singleRere = action(getStr('singleRe'), self.singleRerecognition,
                            'Ctrl+R', 'reRec', getStr('singleRe'), enabled=False)

Leif's avatar
Leif committed
460
        createpoly = action(getStr('creatPolygon'), self.createPolygon,
461
                            'q', 'new', getStr('creatPolygon'), enabled=True)
Leif's avatar
Leif committed
462
463

        saveRec = action(getStr('saveRec'), self.saveRecResult,
464
                         '', 'save', getStr('saveRec'), enabled=False)
Leif's avatar
Leif committed
465

466
467
        saveLabel = action(getStr('saveLabel'), self.saveLabelFile,  #
                           'Ctrl+S', 'save', getStr('saveLabel'), enabled=False)
Leif's avatar
Leif committed
468

469
        undoLastPoint = action(getStr("undoLastPoint"), self.canvas.undoLastPoint,
470
                               'Ctrl+Z', "undo", getStr("undoLastPoint"), enabled=False)
471

472
473
        rotateLeft = action(getStr("rotateLeft"), partial(self.rotateImgAction, 1),
                            'Ctrl+Alt+L', "rotateLeft", getStr("rotateLeft"), enabled=False)
474

475
476
        rotateRight = action(getStr("rotateRight"), partial(self.rotateImgAction, -1),
                             'Ctrl+Alt+R', "rotateRight", getStr("rotateRight"), enabled=False)
477

478
        undo = action(getStr("undo"), self.undoShapeEdit,
479
                      'Ctrl+Z', "undo", getStr("undo"), enabled=False)
480

redearly123/PaddleOCR's avatar
redearly123/PaddleOCR committed
481
482
483
        lock = action(getStr("lockBox"), self.lockSelectedShape,
                      None, "lock", getStr("lockBoxDetail"),
                      enabled=False)
484

Leif's avatar
Leif committed
485
486
487
488
489
490
491
492
493
        self.editButton.setDefaultAction(edit)
        self.newButton.setDefaultAction(create)
        self.DelButton.setDefaultAction(deleteImg)
        self.SaveButton.setDefaultAction(save)
        self.AutoRecognition.setDefaultAction(AutoRec)
        self.reRecogButton.setDefaultAction(reRec)
        # self.preButton.setDefaultAction(openPrevImg)
        # self.nextButton.setDefaultAction(openNextImg)

494
        #  ================== Zoom layout ==================
Leif's avatar
Leif committed
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
        zoomLayout = QHBoxLayout()
        zoomLayout.addStretch()
        self.zoominButton = QToolButton()
        self.zoominButton.setToolButtonStyle(Qt.ToolButtonTextBesideIcon)
        self.zoominButton.setDefaultAction(zoomIn)
        self.zoomoutButton = QToolButton()
        self.zoomoutButton.setToolButtonStyle(Qt.ToolButtonTextBesideIcon)
        self.zoomoutButton.setDefaultAction(zoomOut)
        self.zoomorgButton = QToolButton()
        self.zoomorgButton.setToolButtonStyle(Qt.ToolButtonTextBesideIcon)
        self.zoomorgButton.setDefaultAction(zoomOrg)
        zoomLayout.addWidget(self.zoominButton)
        zoomLayout.addWidget(self.zoomorgButton)
        zoomLayout.addWidget(self.zoomoutButton)

        zoomContainer = QWidget()
        zoomContainer.setLayout(zoomLayout)
        zoomContainer.setGeometry(0, 0, 30, 150)

        shapeLineColor = action(getStr('shapeLineColor'), self.chshapeLineColor,
                                icon='color_line', tip=getStr('shapeLineColorDetail'),
                                enabled=False)
        shapeFillColor = action(getStr('shapeFillColor'), self.chshapeFillColor,
                                icon='color', tip=getStr('shapeFillColorDetail'),
                                enabled=False)

        # Label list context menu.
        labelMenu = QMenu()
        addActions(labelMenu, (edit, delete))

        self.labelList.setContextMenuPolicy(Qt.CustomContextMenu)
526
        self.labelList.customContextMenuRequested.connect(self.popLabelListMenu)
Leif's avatar
Leif committed
527
528
529
530
531
532
533
534

        # Draw squares/rectangles
        self.drawSquaresOption = QAction(getStr('drawSquares'), self)
        self.drawSquaresOption.setCheckable(True)
        self.drawSquaresOption.setChecked(settings.get(SETTING_DRAW_SQUARE, False))
        self.drawSquaresOption.triggered.connect(self.toogleDrawSquare)

        # Store actions for further handling.
535
        self.actions = struct(save=save, resetAll=resetAll, deleteImg=deleteImg,
Leif's avatar
Leif committed
536
                              lineColor=color1, create=create, delete=delete, edit=edit, copy=copy,
537
                              saveRec=saveRec, singleRere=singleRere, AutoRec=AutoRec, reRec=reRec,
Leif's avatar
Leif committed
538
539
540
541
                              createMode=createMode, editMode=editMode,
                              shapeLineColor=shapeLineColor, shapeFillColor=shapeFillColor,
                              zoom=zoom, zoomIn=zoomIn, zoomOut=zoomOut, zoomOrg=zoomOrg,
                              fitWindow=fitWindow, fitWidth=fitWidth,
Leif's avatar
Leif committed
542
                              zoomActions=zoomActions, saveLabel=saveLabel,
543
544
545
                              undo=undo, undoLastPoint=undoLastPoint, open_dataset_dir=open_dataset_dir,
                              rotateLeft=rotateLeft, rotateRight=rotateRight, lock=lock,
                              fileMenuActions=(opendir, open_dataset_dir, saveLabel, resetAll, quit),
Leif's avatar
Leif committed
546
                              beginner=(), advanced=(),
547
548
549
                              editMenu=(createpoly, edit, copy, delete, singleRere, None, undo, undoLastPoint,
                                        None, rotateLeft, rotateRight, None, color1, self.drawSquaresOption, lock),
                              beginnerContext=(create, edit, copy, delete, singleRere, rotateLeft, rotateRight, lock),
Leif's avatar
Leif committed
550
551
                              advancedContext=(createMode, editMode, edit, copy,
                                               delete, shapeLineColor, shapeFillColor),
552
                              onLoadActive=(create, createMode, editMode),
Leif's avatar
Leif committed
553
554
555
556
                              onShapesPresent=(hideAll, showAll))

        # menus
        self.menus = struct(
557
558
559
            file=self.menu('&' + getStr('mfile')),
            edit=self.menu('&' + getStr('medit')),
            view=self.menu('&' + getStr('mview')),
Leif's avatar
Leif committed
560
            autolabel=self.menu('&PaddleOCR'),
561
            help=self.menu('&' + getStr('mhelp')),
Leif's avatar
Leif committed
562
563
564
565
566
567
568
569
570
571
572
            recentFiles=QMenu('Open &Recent'),
            labelList=labelMenu)

        self.lastLabel = None
        # Add option to enable/disable labels being displayed at the top of bounding boxes
        self.displayLabelOption = QAction(getStr('displayLabel'), self)
        self.displayLabelOption.setShortcut("Ctrl+Shift+P")
        self.displayLabelOption.setCheckable(True)
        self.displayLabelOption.setChecked(settings.get(SETTING_PAINT_LABEL, False))
        self.displayLabelOption.triggered.connect(self.togglePaintLabelsOption)

Leif's avatar
Leif committed
573
574
575
576
577
578
        self.labelDialogOption = QAction(getStr('labelDialogOption'), self)
        self.labelDialogOption.setShortcut("Ctrl+Shift+L")
        self.labelDialogOption.setCheckable(True)
        self.labelDialogOption.setChecked(settings.get(SETTING_PAINT_LABEL, False))
        self.labelDialogOption.triggered.connect(self.speedChoose)

579
580
581
582
583
        self.autoSaveOption = QAction(getStr('autoSaveMode'), self)
        self.autoSaveOption.setCheckable(True)
        self.autoSaveOption.setChecked(settings.get(SETTING_PAINT_LABEL, False))
        self.autoSaveOption.triggered.connect(self.autoSaveFunc)

Leif's avatar
Leif committed
584
        addActions(self.menus.file,
585
586
                   (opendir, open_dataset_dir, None, saveLabel, saveRec, self.autoSaveOption, None, resetAll, deleteImg,
                    quit))
Leif's avatar
Leif committed
587

588
        addActions(self.menus.help, (showKeys, showSteps, showInfo))
Leif's avatar
Leif committed
589
        addActions(self.menus.view, (
Leif's avatar
Leif committed
590
            self.displayLabelOption, self.labelDialogOption,
591
            None,
Leif's avatar
Leif committed
592
593
594
595
            hideAll, showAll, None,
            zoomIn, zoomOut, zoomOrg, None,
            fitWindow, fitWidth))

596
        addActions(self.menus.autolabel, (AutoRec, reRec, alcm, None, help))
Leif's avatar
Leif committed
597
598
599
600
601

        self.menus.file.aboutToShow.connect(self.updateFileMenu)

        # Custom context menu for the canvas widget:
        addActions(self.canvas.menus[0], self.actions.beginnerContext)
602

Leif's avatar
Leif committed
603
604
605
606
607
        self.statusBar().showMessage('%s started.' % __appname__)
        self.statusBar().show()

        # Application state.
        self.image = QImage()
608
        self.filePath = ustr(default_filename)
Leif's avatar
Leif committed
609
610
611
612
613
614
615
616
617
618
        self.lastOpenDir = None
        self.recentFiles = []
        self.maxRecent = 7
        self.lineColor = None
        self.fillColor = None
        self.zoom_level = 100
        self.fit_window = False
        # Add Chris
        self.difficult = False

619
        # Fix the compatible issue for qt4 and qt5. Convert the QStringList to python list
Leif's avatar
Leif committed
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
        if settings.get(SETTING_RECENT_FILES):
            if have_qstring():
                recentFileQStringList = settings.get(SETTING_RECENT_FILES)
                self.recentFiles = [ustr(i) for i in recentFileQStringList]
            else:
                self.recentFiles = recentFileQStringList = settings.get(SETTING_RECENT_FILES)

        size = settings.get(SETTING_WIN_SIZE, QSize(1200, 800))

        position = QPoint(0, 0)
        saved_position = settings.get(SETTING_WIN_POSE, position)
        # Fix the multiple monitors issue
        for i in range(QApplication.desktop().screenCount()):
            if QApplication.desktop().availableGeometry(i).contains(saved_position):
                position = saved_position
                break
        self.resize(size)
        self.move(position)
        saveDir = ustr(settings.get(SETTING_SAVE_DIR, None))
        self.lastOpenDir = ustr(settings.get(SETTING_LAST_OPEN_DIR, None))

        self.restoreState(settings.get(SETTING_WIN_STATE, QByteArray()))
        Shape.line_color = self.lineColor = QColor(settings.get(SETTING_LINE_COLOR, DEFAULT_LINE_COLOR))
        Shape.fill_color = self.fillColor = QColor(settings.get(SETTING_FILL_COLOR, DEFAULT_FILL_COLOR))
        self.canvas.setDrawingColor(self.lineColor)
        # Add chris
        Shape.difficult = self.difficult

        # ADD:
        # Populate the File menu dynamically.
        self.updateFileMenu()

        # Since loading the file may take some time, make sure it runs in the background.
        if self.filePath and os.path.isdir(self.filePath):
            self.queueEvent(partial(self.importDirImages, self.filePath or ""))
        elif self.filePath:
            self.queueEvent(partial(self.loadFile, self.filePath or ""))

        # Callbacks:
        self.zoomWidget.valueChanged.connect(self.paintCanvas)

        self.populateModeActions()

        # Display cursor coordinates at the right of status bar
        self.labelCoordinates = QLabel('')
        self.statusBar().addPermanentWidget(self.labelCoordinates)

        # Open Dir if deafult file
        if self.filePath and os.path.isdir(self.filePath):
            self.openDirDialog(dirpath=self.filePath, silent=True)

671
672
673
674
675
676
    def menu(self, title, actions=None):
        menu = self.menuBar().addMenu(title)
        if actions:
            addActions(menu, actions)
        return menu

Leif's avatar
Leif committed
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
    def keyReleaseEvent(self, event):
        if event.key() == Qt.Key_Control:
            self.canvas.setDrawingShapeToSquare(False)

    def keyPressEvent(self, event):
        if event.key() == Qt.Key_Control:
            # Draw rectangle if Ctrl is pressed
            self.canvas.setDrawingShapeToSquare(True)

    def noShapes(self):
        return not self.itemsToShapes

    def populateModeActions(self):
        self.canvas.menus[0].clear()
        addActions(self.canvas.menus[0], self.actions.beginnerContext)
        self.menus.edit.clear()
        actions = (self.actions.create,)  # if self.beginner() else (self.actions.createMode, self.actions.editMode)
        addActions(self.menus.edit, actions + self.actions.editMenu)

    def setDirty(self):
        self.dirty = True
        self.actions.save.setEnabled(True)

    def setClean(self):
        self.dirty = False
        self.actions.save.setEnabled(False)
        self.actions.create.setEnabled(True)

    def toggleActions(self, value=True):
        """Enable/Disable widgets which depend on an opened image."""
        for z in self.actions.zoomActions:
            z.setEnabled(value)
        for action in self.actions.onLoadActive:
            action.setEnabled(value)

    def queueEvent(self, function):
        QTimer.singleShot(0, function)

    def status(self, message, delay=5000):
        self.statusBar().showMessage(message, delay)

    def resetState(self):
        self.itemsToShapes.clear()
        self.shapesToItems.clear()
        self.itemsToShapesbox.clear()  # ADD
        self.shapesToItemsbox.clear()
        self.labelList.clear()
        self.BoxList.clear()
        self.filePath = None
        self.imageData = None
        self.labelFile = None
        self.canvas.resetState()
        self.labelCoordinates.clear()
        # self.comboBox.cb.clear()
        self.result_dic = []

    def currentItem(self):
        items = self.labelList.selectedItems()
        if items:
            return items[0]
        return None

    def currentBox(self):
        items = self.BoxList.selectedItems()
        if items:
            return items[0]
        return None

    def addRecentFile(self, filePath):
        if filePath in self.recentFiles:
            self.recentFiles.remove(filePath)
        elif len(self.recentFiles) >= self.maxRecent:
            self.recentFiles.pop()
        self.recentFiles.insert(0, filePath)

    def beginner(self):
        return self._beginner

    def advanced(self):
        return not self.beginner()

    def getAvailableScreencastViewer(self):
        osName = platform.system()

        if osName == 'Windows':
            return ['C:\\Program Files\\Internet Explorer\\iexplore.exe']
        elif osName == 'Linux':
            return ['xdg-open']
        elif osName == 'Darwin':
            return ['open']

    ## Callbacks ##
    def showTutorialDialog(self):
        subprocess.Popen(self.screencastViewer + [self.screencast])

    def showInfoDialog(self):
        from libs.__init__ import __version__
        msg = u'Name:{0} \nApp Version:{1} \n{2} '.format(__appname__, __version__, sys.version_info)
        QMessageBox.information(self, u'Information', msg)

    def showStepsDialog(self):
        msg = stepsInfo(self.lang)
        QMessageBox.information(self, u'Information', msg)

SLLH's avatar
SLLH committed
781
782
783
784
    def showKeysDialog(self):
        msg = keysInfo(self.lang)
        QMessageBox.information(self, u'Information', msg)

Leif's avatar
Leif committed
785
786
787
788
789
790
791
792
793
794
795
    def createShape(self):
        assert self.beginner()
        self.canvas.setEditing(False)
        self.actions.create.setEnabled(False)
        self.canvas.fourpoint = False

    def createPolygon(self):
        assert self.beginner()
        self.canvas.setEditing(False)
        self.canvas.fourpoint = True
        self.actions.create.setEnabled(False)
796
        self.actions.undoLastPoint.setEnabled(True)
Leif's avatar
Leif committed
797

798
799
800
801
802
803
804
805
806
807
808
    def rotateImg(self, filename, k, _value):

        self.actions.rotateRight.setEnabled(_value)
        pix = cv2.imread(filename)
        pix = np.rot90(pix, k)
        cv2.imwrite(filename, pix)
        self.canvas.update()
        self.loadFile(filename)

    def rotateImgWarn(self):
        if self.lang == 'ch':
809
            self.msgBox.warning(self, "提示", "\n 该图片已经有标注框,旋转操作会打乱标注,建议清除标注框后旋转。")
810
        else:
811
812
813
            self.msgBox.warning(self, "Warn", "\n The picture already has a label box, "
                                              "and rotation will disrupt the label. "
                                              "It is recommended to clear the label box and rotate it.")
814

Leif's avatar
Leif committed
815
    def rotateImgAction(self, k=1, _value=False):
816
817
818
819

        filename = self.mImgList[self.currIndex]

        if os.path.exists(filename):
820
821
822
            if self.itemsToShapesbox:
                self.rotateImgWarn()
            else:
Leif's avatar
Leif committed
823
824
825
                self.saveFile()
                self.dirty = False
                self.rotateImg(filename=filename, k=k, _value=True)
826
        else:
827
            self.rotateImgWarn()
828
            self.actions.rotateRight.setEnabled(False)
Leif's avatar
Leif committed
829
            self.actions.rotateLeft.setEnabled(False)
830

Leif's avatar
Leif committed
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
    def toggleDrawingSensitive(self, drawing=True):
        """In the middle of drawing, toggling between modes should be disabled."""
        self.actions.editMode.setEnabled(not drawing)
        if not drawing and self.beginner():
            # Cancel creation.
            print('Cancel creation.')
            self.canvas.setEditing(True)
            self.canvas.restoreCursor()
            self.actions.create.setEnabled(True)

    def toggleDrawMode(self, edit=True):
        self.canvas.setEditing(edit)
        self.actions.createMode.setEnabled(edit)
        self.actions.editMode.setEnabled(not edit)

    def setCreateMode(self):
        assert self.advanced()
        self.toggleDrawMode(False)

    def setEditMode(self):
        assert self.advanced()
        self.toggleDrawMode(True)
        self.labelSelectionChanged()

    def updateFileMenu(self):
        currFilePath = self.filePath

        def exists(filename):
            return os.path.exists(filename)

        menu = self.menus.recentFiles
        menu.clear()
        files = [f for f in self.recentFiles if f !=
                 currFilePath and exists(f)]
        for i, f in enumerate(files):
            icon = newIcon('labels')
            action = QAction(
                icon, '&%d %s' % (i + 1, QFileInfo(f).fileName()), self)
            action.triggered.connect(partial(self.loadRecent, f))
            menu.addAction(action)

    def popLabelListMenu(self, point):
        self.menus.labelList.exec_(self.labelList.mapToGlobal(point))

    def editLabel(self):
        if not self.canvas.editing():
            return
        item = self.currentItem()
        if not item:
            return
        text = self.labelDialog.popUp(item.text())
        if text is not None:
            item.setText(text)
            # item.setBackground(generateColorByText(text))
            self.setDirty()
            self.updateComboBox()

888
    # =================== detection box related functions ===================
Leif's avatar
Leif committed
889
890
891
892
893
    def boxItemChanged(self, item):
        shape = self.itemsToShapesbox[item]

        box = ast.literal_eval(item.text())
        # print('shape in labelItemChanged is',shape.points)
894
        if box != [(int(p.x()), int(p.y())) for p in shape.points]:
Leif's avatar
Leif committed
895
896
897
898
899
900
901
            # shape.points = box
            shape.points = [QPointF(p[0], p[1]) for p in box]

            # QPointF(x,y)
            # shape.line_color = generateColorByText(shape.label)
            self.setDirty()
        else:  # User probably changed item visibility
902
            self.canvas.setShapeVisible(shape, True)  # item.checkState() == Qt.Checked
Leif's avatar
Leif committed
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936

    def editBox(self):  # ADD
        if not self.canvas.editing():
            return
        item = self.currentBox()
        if not item:
            return
        text = self.labelDialog.popUp(item.text())

        imageSize = str(self.image.size())
        width, height = self.image.width(), self.image.height()
        if text:
            try:
                text_list = eval(text)
            except:
                msg_box = QMessageBox(QMessageBox.Warning, 'Warning', 'Please enter the correct format')
                msg_box.exec_()
                return
            if len(text_list) < 4:
                msg_box = QMessageBox(QMessageBox.Warning, 'Warning', 'Please enter the coordinates of 4 points')
                msg_box.exec_()
                return
            for box in text_list:
                if box[0] > width or box[0] < 0 or box[1] > height or box[1] < 0:
                    msg_box = QMessageBox(QMessageBox.Warning, 'Warning', 'Out of picture size')
                    msg_box.exec_()
                    return

            item.setText(text)
            # item.setBackground(generateColorByText(text))
            self.setDirty()
            self.updateComboBox()

    def updateBoxlist(self):
SLLH's avatar
SLLH committed
937
        self.canvas.selectedShapes_hShape = []
SLLH's avatar
SLLH committed
938
        if self.canvas.hShape != None:
SLLH's avatar
SLLH committed
939
            self.canvas.selectedShapes_hShape = self.canvas.selectedShapes + [self.canvas.hShape]
SLLH's avatar
SLLH committed
940
        else:
SLLH's avatar
SLLH committed
941
942
943
944
945
            self.canvas.selectedShapes_hShape = self.canvas.selectedShapes
        for shape in self.canvas.selectedShapes_hShape:
            item = self.shapesToItemsbox[shape]  # listitem
            text = [(int(p.x()), int(p.y())) for p in shape.points]
            item.setText(str(text))
946
        self.actions.undo.setEnabled(True)
Leif's avatar
Leif committed
947
948
949
950
951
        self.setDirty()

    def indexTo5Files(self, currIndex):
        if currIndex < 2:
            return self.mImgList[:5]
952
        elif currIndex > len(self.mImgList) - 3:
Leif's avatar
Leif committed
953
954
            return self.mImgList[-5:]
        else:
955
            return self.mImgList[currIndex - 2: currIndex + 3]
Leif's avatar
Leif committed
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974

    # Tzutalin 20160906 : Add file list and dock to move faster
    def fileitemDoubleClicked(self, item=None):
        self.currIndex = self.mImgList.index(ustr(os.path.join(os.path.abspath(self.dirname), item.text())))
        filename = self.mImgList[self.currIndex]
        if filename:
            self.mImgList5 = self.indexTo5Files(self.currIndex)
            # self.additems5(None)
            self.loadFile(filename)

    def iconitemDoubleClicked(self, item=None):
        self.currIndex = self.mImgList.index(ustr(os.path.join(item.toolTip())))
        filename = self.mImgList[self.currIndex]
        if filename:
            self.mImgList5 = self.indexTo5Files(self.currIndex)
            # self.additems5(None)
            self.loadFile(filename)

    def CanvasSizeChange(self):
975
976
        if len(self.mImgList) > 0 and self.imageSlider.hasFocus():
            self.zoomWidget.setValue(self.imageSlider.value())
Leif's avatar
Leif committed
977

978
979
    def shapeSelectionChanged(self, selected_shapes):
        self._noSelectionSlot = True
980
        for shape in self.canvas.selectedShapes:
981
982
            shape.selected = False
        self.labelList.clearSelection()
983
        self.canvas.selectedShapes = selected_shapes
984
985
986
        for shape in self.canvas.selectedShapes:
            shape.selected = True
            self.shapesToItems[shape].setSelected(True)
987
988
            self.shapesToItemsbox[shape].setSelected(True)

989
        self.labelList.scrollToItem(self.currentItem())  # QAbstractItemView.EnsureVisible
990
        self.BoxList.scrollToItem(self.currentBox())
991
992
993

        self._noSelectionSlot = False
        n_selected = len(selected_shapes)
994
        self.actions.singleRere.setEnabled(n_selected)
995
996
997
        self.actions.delete.setEnabled(n_selected)
        self.actions.copy.setEnabled(n_selected)
        self.actions.edit.setEnabled(n_selected == 1)
redearly123/PaddleOCR's avatar
redearly123/PaddleOCR committed
998
        self.actions.lock.setEnabled(n_selected)
Leif's avatar
Leif committed
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020

    def addLabel(self, shape):
        shape.paintLabel = self.displayLabelOption.isChecked()
        item = HashableQListWidgetItem(shape.label)
        item.setFlags(item.flags() | Qt.ItemIsUserCheckable)
        item.setCheckState(Qt.Unchecked) if shape.difficult else item.setCheckState(Qt.Checked)
        # Checked means difficult is False
        # item.setBackground(generateColorByText(shape.label))
        self.itemsToShapes[item] = shape
        self.shapesToItems[shape] = item
        self.labelList.addItem(item)
        # print('item in add label is ',[(p.x(), p.y()) for p in shape.points], shape.label)

        # ADD for box
        item = HashableQListWidgetItem(str([(int(p.x()), int(p.y())) for p in shape.points]))
        self.itemsToShapesbox[item] = shape
        self.shapesToItemsbox[shape] = item
        self.BoxList.addItem(item)
        for action in self.actions.onShapesPresent:
            action.setEnabled(True)
        self.updateComboBox()

1021
1022
1023
1024
        # update show counting
        self.BoxListDock.setWindowTitle(self.BoxListDockName + f" ({self.BoxList.count()})")
        self.labelListDock.setWindowTitle(self.labelListDockName + f" ({self.labelList.count()})")

1025
1026
    def remLabels(self, shapes):
        if shapes is None:
Leif's avatar
Leif committed
1027
1028
            # print('rm empty label')
            return
1029
1030
1031
1032
1033
1034
        for shape in shapes:
            item = self.shapesToItems[shape]
            self.labelList.takeItem(self.labelList.row(item))
            del self.shapesToItems[shape]
            del self.itemsToShapes[item]
            self.updateComboBox()
Leif's avatar
Leif committed
1035

1036
1037
1038
1039
1040
1041
            # ADD:
            item = self.shapesToItemsbox[shape]
            self.BoxList.takeItem(self.BoxList.row(item))
            del self.shapesToItemsbox[shape]
            del self.itemsToShapesbox[item]
            self.updateComboBox()
Leif's avatar
Leif committed
1042
1043
1044

    def loadLabels(self, shapes):
        s = []
HinGwenWoong's avatar
HinGwenWoong committed
1045
        for label, points, line_color, key, difficult in shapes:
1046
            shape = Shape(label=label, line_color=line_color)
Leif's avatar
Leif committed
1047
1048
1049
1050
1051
1052
1053
1054
1055
            for x, y in points:

                # Ensure the labels are within the bounds of the image. If not, fix them.
                x, y, snapped = self.canvas.snapPointToCanvas(x, y)
                if snapped:
                    self.setDirty()

                shape.addPoint(QPointF(x, y))
            shape.difficult = difficult
1056
            # shape.locked = False
Leif's avatar
Leif committed
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
            shape.close()
            s.append(shape)

            # if line_color:
            #     shape.line_color = QColor(*line_color)
            # else:
            #     shape.line_color = generateColorByText(label)
            #
            # if fill_color:
            #     shape.fill_color = QColor(*fill_color)
            # else:
            #     shape.fill_color = generateColorByText(label)
1069

Leif's avatar
Leif committed
1070
            self.addLabel(shape)
1071

Leif's avatar
Leif committed
1072
1073
1074
        self.updateComboBox()
        self.canvas.loadShapes(s)

1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
    def singleLabel(self, shape):
        if shape is None:
            # print('rm empty label')
            return
        item = self.shapesToItems[shape]
        item.setText(shape.label)
        self.updateComboBox()

        # ADD:
        item = self.shapesToItemsbox[shape]
        item.setText(str([(int(p.x()), int(p.y())) for p in shape.points]))
        self.updateComboBox()

Leif's avatar
Leif committed
1088
    def updateComboBox(self):
Leif's avatar
Leif committed
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
        # Get the unique labels and add them to the Combobox.
        itemsTextList = [str(self.labelList.item(i).text()) for i in range(self.labelList.count())]

        uniqueTextList = list(set(itemsTextList))
        # Add a null row for showing all the labels
        uniqueTextList.append("")
        uniqueTextList.sort()

        # self.comboBox.update_items(uniqueTextList)

    def saveLabels(self, annotationFilePath, mode='Auto'):
        # Mode is Auto means that labels will be loaded from self.result_dic totally, which is the output of ocr model
        annotationFilePath = ustr(annotationFilePath)

        def format_shape(s):
            # print('s in saveLabels is ',s)
            return dict(label=s.label,  # str
                        line_color=s.line_color.getRgb(),
                        fill_color=s.fill_color.getRgb(),
Leif's avatar
Leif committed
1108
                        points=[(int(p.x()), int(p.y())) for p in s.points],  # QPonitF
1109
                        # add chris
Leif's avatar
Leif committed
1110
1111
1112
                        difficult=s.difficult)  # bool

        shapes = [] if mode == 'Auto' else \
1113
            [format_shape(shape) for shape in self.canvas.shapes if shape.line_color != DEFAULT_LOCK_COLOR]
Leif's avatar
Leif committed
1114
        # Can add differrent annotation formats here
1115
        for box in self.result_dic:
Leif's avatar
Leif committed
1116
            trans_dic = {"label": box[1][0], "points": box[0], 'difficult': False}
1117
            if trans_dic["label"] == "" and mode == 'Auto':
Leif's avatar
Leif committed
1118
1119
1120
1121
1122
1123
                continue
            shapes.append(trans_dic)

        try:
            trans_dic = []
            for box in shapes:
1124
                trans_dic.append(
HinGwenWoong's avatar
HinGwenWoong committed
1125
                    {"transcription": box['label'], "points": box['points'],
1126
                     "difficult": box['difficult'], "key": "None"})
Leif's avatar
Leif committed
1127
1128
1129
1130
1131
1132
1133
1134
1135
            self.PPlabel[annotationFilePath] = trans_dic
            if mode == 'Auto':
                self.Cachelabel[annotationFilePath] = trans_dic

            # else:
            #     self.labelFile.save(annotationFilePath, shapes, self.filePath, self.imageData,
            #                         self.lineColor.getRgb(), self.fillColor.getRgb())
            # print('Image:{0} -> Annotation:{1}'.format(self.filePath, annotationFilePath))
            return True
1136
        except:
Leif's avatar
Leif committed
1137
            self.errorMessage(u'Error saving label data', u'Error saving label data')
Leif's avatar
Leif committed
1138
1139
1140
            return False

    def copySelectedShape(self):
1141
1142
        for shape in self.canvas.copySelectedShape():
            self.addLabel(shape)
Leif's avatar
Leif committed
1143
        # fix copy and delete
1144
        # self.shapeSelectionChanged(True)
1145

Leif's avatar
Leif committed
1146
    def labelSelectionChanged(self):
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
        if self._noSelectionSlot:
            return
        if self.canvas.editing():
            selected_shapes = []
            for item in self.labelList.selectedItems():
                selected_shapes.append(self.itemsToShapes[item])
            if selected_shapes:
                self.canvas.selectShapes(selected_shapes)
            else:
                self.canvas.deSelectShape()

HinGwenWoong's avatar
HinGwenWoong committed
1158
1159
1160
1161
1162
1163
    def keyListSelectionChanged(self):
        pass

    def keyListItemChanged(self):
        pass

Leif's avatar
Leif committed
1164
    def boxSelectionChanged(self):
1165
        if self._noSelectionSlot:
1166
            # self.BoxList.scrollToItem(self.currentBox(), QAbstractItemView.PositionAtCenter)
1167
1168
1169
            return
        if self.canvas.editing():
            selected_shapes = []
1170
            for item in self.BoxList.selectedItems():
1171
1172
1173
1174
1175
1176
                selected_shapes.append(self.itemsToShapesbox[item])
            if selected_shapes:
                self.canvas.selectShapes(selected_shapes)
            else:
                self.canvas.deSelectShape()

Leif's avatar
Leif committed
1177
1178
1179
1180
1181
1182
1183
    def labelItemChanged(self, item):
        shape = self.itemsToShapes[item]
        label = item.text()
        if label != shape.label:
            shape.label = item.text()
            # shape.line_color = generateColorByText(shape.label)
            self.setDirty()
1184
        elif not ((item.checkState() == Qt.Unchecked) ^ (not shape.difficult)):
Leif's avatar
Leif committed
1185
1186
1187
1188
1189
1190
1191
            shape.difficult = True if item.checkState() == Qt.Unchecked else False
            self.setDirty()
        else:  # User probably changed item visibility
            self.canvas.setShapeVisible(shape, True)  # item.checkState() == Qt.Checked
            # self.actions.save.setEnabled(True)

    # Callback functions:
Leif's avatar
Leif committed
1192
    def newShape(self, value=True):
Leif's avatar
Leif committed
1193
1194
1195
1196
1197
        """Pop-up and give focus to the label editor.

        position MUST be in global coordinates.
        """
        if len(self.labelHist) > 0:
1198
            self.labelDialog = LabelDialog(parent=self, listItem=self.labelHist)
Leif's avatar
Leif committed
1199

Leif's avatar
Leif committed
1200
        if value:
Leif's avatar
Leif committed
1201
1202
            text = self.labelDialog.popUp(text=self.prevLabelText)
            self.lastLabel = text
Leif's avatar
Leif committed
1203
1204
        else:
            text = self.prevLabelText
Leif's avatar
Leif committed
1205
1206
1207
1208

        if text is not None:
            self.prevLabelText = self.stringBundle.getString('tempLabel')
            # generate_color = generateColorByText(text)
1209
            shape = self.canvas.setLastLabel(text, None, None)  # generate_color, generate_color
Leif's avatar
Leif committed
1210
1211
1212
1213
            self.addLabel(shape)
            if self.beginner():  # Switch to edit mode.
                self.canvas.setEditing(True)
                self.actions.create.setEnabled(True)
1214
1215
                self.actions.undoLastPoint.setEnabled(False)
                self.actions.undo.setEnabled(True)
Leif's avatar
Leif committed
1216
1217
1218
1219
1220
1221
1222
1223
            else:
                self.actions.editMode.setEnabled(True)
            self.setDirty()

        else:
            # self.canvas.undoLastLine()
            self.canvas.resetAllLines()

1224
        if self.kie_mode:
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
            key_text, flags = self.keyDialog.popUp(self.key_previous_text)
            if key_text is not None:
                self.key_previous_text = key_text
                if not self.keyList.findItemsByLabel(key_text):
                    item = self.keyList.createItemFromLabel(key_text)
                    self.keyList.addItem(item)
                    rgb = self._get_rgb_by_label(key_text, self.kie_mode)
                    self.keyList.setItemLabel(item, key_text, rgb)

    def _update_shape_color(self, shape):
        r, g, b = self._get_rgb_by_label(shape.label)
        shape.line_color = QtGui.QColor(r, g, b)
        shape.vertex_fill_color = QtGui.QColor(r, g, b)
        shape.hvertex_fill_color = QtGui.QColor(255, 255, 255)
        shape.fill_color = QtGui.QColor(r, g, b, 128)
        shape.select_line_color = QtGui.QColor(255, 255, 255)
        shape.select_fill_color = QtGui.QColor(r, g, b, 155)

    def _get_rgb_by_label(self, label, kie_mode):
        shift_auto_shape_color = 0  # use for random color
        if kie_mode:
            item = self.keyList.findItemsByLabel(label)[0]
            label_id = self.keyList.indexFromItem(item).row() + 1
            label_id += shift_auto_shape_color
            return LABEL_COLORMAP[label_id % len(LABEL_COLORMAP)]
        else:
            return (0, 255, 0)
1252

Leif's avatar
Leif committed
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
    def scrollRequest(self, delta, orientation):
        units = - delta / (8 * 15)
        bar = self.scrollBars[orientation]
        bar.setValue(bar.value() + bar.singleStep() * units)

    def setZoom(self, value):
        self.actions.fitWidth.setChecked(False)
        self.actions.fitWindow.setChecked(False)
        self.zoomMode = self.MANUAL_ZOOM
        self.zoomWidget.setValue(value)

    def addZoom(self, increment=10):
        self.setZoom(self.zoomWidget.value() + increment)
1266
        self.imageSlider.setValue(self.zoomWidget.value() + increment)  # set zoom slider value
Leif's avatar
Leif committed
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337

    def zoomRequest(self, delta):
        # get the current scrollbar positions
        # calculate the percentages ~ coordinates
        h_bar = self.scrollBars[Qt.Horizontal]
        v_bar = self.scrollBars[Qt.Vertical]

        # get the current maximum, to know the difference after zooming
        h_bar_max = h_bar.maximum()
        v_bar_max = v_bar.maximum()

        # get the cursor position and canvas size
        # calculate the desired movement from 0 to 1
        # where 0 = move left
        #       1 = move right
        # up and down analogous
        cursor = QCursor()
        pos = cursor.pos()
        relative_pos = QWidget.mapFromGlobal(self, pos)

        cursor_x = relative_pos.x()
        cursor_y = relative_pos.y()

        w = self.scrollArea.width()
        h = self.scrollArea.height()

        # the scaling from 0 to 1 has some padding
        # you don't have to hit the very leftmost pixel for a maximum-left movement
        margin = 0.1
        move_x = (cursor_x - margin * w) / (w - 2 * margin * w)
        move_y = (cursor_y - margin * h) / (h - 2 * margin * h)

        # clamp the values from 0 to 1
        move_x = min(max(move_x, 0), 1)
        move_y = min(max(move_y, 0), 1)

        # zoom in
        units = delta / (8 * 15)
        scale = 10
        self.addZoom(scale * units)

        # get the difference in scrollbar values
        # this is how far we can move
        d_h_bar_max = h_bar.maximum() - h_bar_max
        d_v_bar_max = v_bar.maximum() - v_bar_max

        # get the new scrollbar values
        new_h_bar_value = h_bar.value() + move_x * d_h_bar_max
        new_v_bar_value = v_bar.value() + move_y * d_v_bar_max

        h_bar.setValue(new_h_bar_value)
        v_bar.setValue(new_v_bar_value)

    def setFitWindow(self, value=True):
        if value:
            self.actions.fitWidth.setChecked(False)
        self.zoomMode = self.FIT_WINDOW if value else self.MANUAL_ZOOM
        self.adjustScale()

    def setFitWidth(self, value=True):
        if value:
            self.actions.fitWindow.setChecked(False)
        self.zoomMode = self.FIT_WIDTH if value else self.MANUAL_ZOOM
        self.adjustScale()

    def togglePolygons(self, value):
        for item, shape in self.itemsToShapes.items():
            self.canvas.setShapeVisible(shape, value)

    def loadFile(self, filePath=None):
        """Load the specified file, or the last opened file if None."""
Leif's avatar
Leif committed
1338
1339
        if self.dirty:
            self.mayContinue()
Leif's avatar
Leif committed
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
        self.resetState()
        self.canvas.setEnabled(False)
        if filePath is None:
            filePath = self.settings.get(SETTING_FILENAME)

        # Make sure that filePath is a regular python string, rather than QString
        filePath = ustr(filePath)
        # Fix bug: An index error after select a directory when open a new file.
        unicodeFilePath = ustr(filePath)
        # unicodeFilePath = os.path.abspath(unicodeFilePath)
        # Tzutalin 20160906 : Add file list and dock to move faster
        # Highlight the file item
1352

Leif's avatar
Leif committed
1353
1354
1355
1356
1357
1358
1359
1360
        if unicodeFilePath and self.fileListWidget.count() > 0:
            if unicodeFilePath in self.mImgList:
                index = self.mImgList.index(unicodeFilePath)
                fileWidgetItem = self.fileListWidget.item(index)
                print('unicodeFilePath is', unicodeFilePath)
                fileWidgetItem.setSelected(True)
                self.iconlist.clear()
                self.additems5(None)
1361

Leif's avatar
Leif committed
1362
1363
1364
1365
1366
1367
1368
                for i in range(5):
                    item_tooltip = self.iconlist.item(i).toolTip()
                    # print(i,"---",item_tooltip)
                    if item_tooltip == ustr(filePath):
                        titem = self.iconlist.item(i)
                        titem.setSelected(True)
                        self.iconlist.scrollToItem(titem)
1369
                        break
Leif's avatar
Leif committed
1370
1371
1372
1373
1374
1375
1376
            else:
                self.fileListWidget.clear()
                self.mImgList.clear()
                self.iconlist.clear()

        # if unicodeFilePath and self.iconList.count() > 0:
        #     if unicodeFilePath in self.mImgList:
1377

Leif's avatar
Leif committed
1378
        if unicodeFilePath and os.path.exists(unicodeFilePath):
1379
            self.canvas.verified = False
1380
1381
1382
1383
1384
            cvimg = cv2.imdecode(np.fromfile(unicodeFilePath, dtype=np.uint8), 1)
            height, width, depth = cvimg.shape
            cvimg = cv2.cvtColor(cvimg, cv2.COLOR_BGR2RGB)
            image = QImage(cvimg.data, width, height, width * depth, QImage.Format_RGB888)

Leif's avatar
Leif committed
1385
1386
1387
1388
1389
1390
1391
1392
1393
            if image.isNull():
                self.errorMessage(u'Error opening file',
                                  u"<p>Make sure <i>%s</i> is a valid image file." % unicodeFilePath)
                self.status("Error reading %s" % unicodeFilePath)
                return False
            self.status("Loaded %s" % os.path.basename(unicodeFilePath))
            self.image = image
            self.filePath = unicodeFilePath
            self.canvas.loadPixmap(QPixmap.fromImage(image))
1394

Leif's avatar
Leif committed
1395
1396
1397
1398
1399
            if self.validFilestate(filePath) is True:
                self.setClean()
            else:
                self.dirty = False
                self.actions.save.setEnabled(True)
1400
1401
            if len(self.canvas.lockedShapes) != 0:
                self.actions.save.setEnabled(True)
1402
                self.setDirty()
Leif's avatar
Leif committed
1403
1404
1405
1406
1407
            self.canvas.setEnabled(True)
            self.adjustScale(initial=True)
            self.paintCanvas()
            self.addRecentFile(self.filePath)
            self.toggleActions(True)
redearly123/PaddleOCR's avatar
redearly123/PaddleOCR committed
1408

Leif's avatar
Leif committed
1409
            self.showBoundingBoxFromPPlabel(filePath)
1410

Leif's avatar
Leif committed
1411
            self.setWindowTitle(__appname__ + ' ' + filePath)
1412

Leif's avatar
Leif committed
1413
1414
1415
1416
1417
            # Default : select last item if there is at least one item
            if self.labelList.count():
                self.labelList.setCurrentItem(self.labelList.item(self.labelList.count() - 1))
                self.labelList.item(self.labelList.count() - 1).setSelected(True)

1418
1419
1420
            # show file list image count
            select_indexes = self.fileListWidget.selectedIndexes()
            if len(select_indexes) > 0:
HinGwenWoong's avatar
HinGwenWoong committed
1421
                self.fileDock.setWindowTitle(self.fileListName + f" ({select_indexes[0].row() + 1}"
1422
                                                                 f"/{self.fileListWidget.count()})")
1423
1424
1425
            # update show counting
            self.BoxListDock.setWindowTitle(self.BoxListDockName + f" ({self.BoxList.count()})")
            self.labelListDock.setWindowTitle(self.labelListDockName + f" ({self.labelList.count()})")
1426

Leif's avatar
Leif committed
1427
1428
1429
1430
1431
            self.canvas.setFocus(True)
            return True
        return False

    def showBoundingBoxFromPPlabel(self, filePath):
redearly123/PaddleOCR's avatar
redearly123/PaddleOCR committed
1432
        width, height = self.image.width(), self.image.height()
Leif's avatar
Leif committed
1433
        imgidx = self.getImglabelidx(filePath)
1434
1435
        shapes = []
        # box['ratio'] of the shapes saved in lockedShapes contains the ratio of the
redearly123/PaddleOCR's avatar
redearly123/PaddleOCR committed
1436
1437
        # four corner coordinates of the shapes to the height and width of the image
        for box in self.canvas.lockedShapes:
1438
            if self.canvas.isInTheSameImage:
1439
                shapes.append((box['transcription'], [[s[0] * width, s[1] * height] for s in box['ratio']],
HinGwenWoong's avatar
HinGwenWoong committed
1440
                               DEFAULT_LOCK_COLOR, box['key'], box['difficult']))
1441
            else:
1442
                shapes.append(('锁定框:待检测', [[s[0] * width, s[1] * height] for s in box['ratio']],
HinGwenWoong's avatar
HinGwenWoong committed
1443
                               DEFAULT_LOCK_COLOR, box['key'], box['difficult']))
redearly123/PaddleOCR's avatar
redearly123/PaddleOCR committed
1444
1445
        if imgidx in self.PPlabel.keys():
            for box in self.PPlabel[imgidx]:
HinGwenWoong's avatar
HinGwenWoong committed
1446
                shapes.append((box['transcription'], box['points'], None, box['key'], box['difficult']))
1447

Leif's avatar
Leif committed
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
        self.loadLabels(shapes)
        self.canvas.verified = False

    def validFilestate(self, filePath):
        if filePath not in self.fileStatedict.keys():
            return None
        elif self.fileStatedict[filePath] == 1:
            return True
        else:
            return False

    def resizeEvent(self, event):
        if self.canvas and not self.image.isNull() \
1461
                and self.zoomMode != self.MANUAL_ZOOM:
Leif's avatar
Leif committed
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
            self.adjustScale()
        super(MainWindow, self).resizeEvent(event)

    def paintCanvas(self):
        assert not self.image.isNull(), "cannot paint null image"
        self.canvas.scale = 0.01 * self.zoomWidget.value()
        self.canvas.adjustSize()
        self.canvas.update()

    def adjustScale(self, initial=False):
        value = self.scalers[self.FIT_WINDOW if initial else self.zoomMode]()
        self.zoomWidget.setValue(int(100 * value))

    def scaleFitWindow(self):
        """Figure out the size of the pixmap in order to fit the main widget."""
        e = 2.0  # So that no scrollbars are generated.
        w1 = self.centralWidget().width() - e
1479
        h1 = self.centralWidget().height() - e - 110
Leif's avatar
Leif committed
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
        a1 = w1 / h1
        # Calculate a new scale value based on the pixmap's aspect ratio.
        w2 = self.canvas.pixmap.width() - 0.0
        h2 = self.canvas.pixmap.height() - 0.0
        a2 = w2 / h2
        return w1 / w2 if a2 >= a1 else h1 / h2

    def scaleFitWidth(self):
        # The epsilon does not seem to work too well here.
        w = self.centralWidget().width() - 2.0
        return w / self.canvas.pixmap.width()

    def closeEvent(self, event):
        if not self.mayContinue():
            event.ignore()
        else:
            settings = self.settings
            # If it loads images from dir, don't load it at the begining
            if self.dirname is None:
                settings[SETTING_FILENAME] = self.filePath if self.filePath else ''
            else:
                settings[SETTING_FILENAME] = ''

            settings[SETTING_WIN_SIZE] = self.size()
            settings[SETTING_WIN_POSE] = self.pos()
            settings[SETTING_WIN_STATE] = self.saveState()
            settings[SETTING_LINE_COLOR] = self.lineColor
            settings[SETTING_FILL_COLOR] = self.fillColor
            settings[SETTING_RECENT_FILES] = self.recentFiles
            settings[SETTING_ADVANCE_MODE] = not self._beginner
            if self.defaultSaveDir and os.path.exists(self.defaultSaveDir):
                settings[SETTING_SAVE_DIR] = ustr(self.defaultSaveDir)
            else:
                settings[SETTING_SAVE_DIR] = ''

            if self.lastOpenDir and os.path.exists(self.lastOpenDir):
                settings[SETTING_LAST_OPEN_DIR] = self.lastOpenDir
            else:
                settings[SETTING_LAST_OPEN_DIR] = ''

            settings[SETTING_PAINT_LABEL] = self.displayLabelOption.isChecked()
            settings[SETTING_DRAW_SQUARE] = self.drawSquaresOption.isChecked()
            settings.save()
            try:
Leif's avatar
Leif committed
1524
                self.saveLabelFile()
Leif's avatar
Leif committed
1525
1526
1527
1528
1529
            except:
                pass

    def loadRecent(self, filename):
        if self.mayContinue():
1530
            print(filename, "======")
Leif's avatar
Leif committed
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
            self.loadFile(filename)

    def scanAllImages(self, folderPath):
        extensions = ['.%s' % fmt.data().decode("ascii").lower() for fmt in QImageReader.supportedImageFormats()]
        images = []

        for file in os.listdir(folderPath):
            if file.lower().endswith(tuple(extensions)):
                relativePath = os.path.join(folderPath, file)
                path = ustr(os.path.abspath(relativePath))
                images.append(path)
        natural_sort(images, key=lambda x: x.lower())
        return images

    def openDirDialog(self, _value=False, dirpath=None, silent=False):
        if not self.mayContinue():
            return

        defaultOpenDirPath = dirpath if dirpath else '.'
        if self.lastOpenDir and os.path.exists(self.lastOpenDir):
            defaultOpenDirPath = self.lastOpenDir
        else:
            defaultOpenDirPath = os.path.dirname(self.filePath) if self.filePath else '.'
        if silent != True:
            targetDirPath = ustr(QFileDialog.getExistingDirectory(self,
1556
1557
1558
                                                                  '%s - Open Directory' % __appname__,
                                                                  defaultOpenDirPath,
                                                                  QFileDialog.ShowDirsOnly | QFileDialog.DontResolveSymlinks))
Leif's avatar
Leif committed
1559
1560
1561
1562
1563
        else:
            targetDirPath = ustr(defaultOpenDirPath)
        self.lastOpenDir = targetDirPath
        self.importDirImages(targetDirPath)

1564
    def openDatasetDirDialog(self):
1565
        if self.lastOpenDir and os.path.exists(self.lastOpenDir):
Leif's avatar
Leif committed
1566
1567
1568
1569
            if platform.system() == 'Windows':
                os.startfile(self.lastOpenDir)
            else:
                os.system('open ' + os.path.normpath(self.lastOpenDir))
1570
            defaultOpenDirPath = self.lastOpenDir
Leif's avatar
Leif committed
1571

1572
1573
1574
1575
        else:
            if self.lang == 'ch':
                self.msgBox.warning(self, "提示", "\n 原文件夹已不存在,请从新选择数据集路径!")
            else:
1576
1577
                self.msgBox.warning(self, "Warn",
                                    "\n The original folder no longer exists, please choose the data set path again!")
1578
1579
1580

            self.actions.open_dataset_dir.setEnabled(False)
            defaultOpenDirPath = os.path.dirname(self.filePath) if self.filePath else '.'
1581

1582
    def importDirImages(self, dirpath, isDelete=False):
Leif's avatar
Leif committed
1583
1584
1585
        if not self.mayContinue() or not dirpath:
            return
        if self.defaultSaveDir and self.defaultSaveDir != dirpath:
Leif's avatar
Leif committed
1586
            self.saveLabelFile()
Leif's avatar
Leif committed
1587
1588
1589

        if not isDelete:
            self.loadFilestate(dirpath)
1590
            self.PPlabelpath = dirpath + '/Label.txt'
Leif's avatar
Leif committed
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
            self.PPlabel = self.loadLabelFile(self.PPlabelpath)
            self.Cachelabelpath = dirpath + '/Cache.cach'
            self.Cachelabel = self.loadLabelFile(self.Cachelabelpath)
            if self.Cachelabel:
                self.PPlabel = dict(self.Cachelabel, **self.PPlabel)
        self.lastOpenDir = dirpath
        self.dirname = dirpath

        self.defaultSaveDir = dirpath
        self.statusBar().showMessage('%s started. Annotation will be saved to %s' %
                                     (__appname__, self.defaultSaveDir))
        self.statusBar().show()

        self.filePath = None
        self.fileListWidget.clear()
        self.mImgList = self.scanAllImages(dirpath)
        self.mImgList5 = self.mImgList[:5]
        self.openNextImg()
        doneicon = newIcon('done')
        closeicon = newIcon('close')
        for imgPath in self.mImgList:
            filename = os.path.basename(imgPath)
            if self.validFilestate(imgPath) is True:
                item = QListWidgetItem(doneicon, filename)
            else:
                item = QListWidgetItem(closeicon, filename)
            self.fileListWidget.addItem(item)

1619
        print('DirPath in importDirImages is', dirpath)
Leif's avatar
Leif committed
1620
1621
1622
1623
1624
1625
        self.iconlist.clear()
        self.additems5(dirpath)
        self.changeFileFolder = True
        self.haveAutoReced = False
        self.AutoRecognition.setEnabled(True)
        self.reRecogButton.setEnabled(True)
1626
1627
        self.actions.AutoRec.setEnabled(True)
        self.actions.reRec.setEnabled(True)
1628
        self.actions.open_dataset_dir.setEnabled(True)
1629
        self.actions.rotateLeft.setEnabled(True)
1630
        self.actions.rotateRight.setEnabled(True)
1631

1632
        self.fileListWidget.setCurrentRow(0)  # set list index to first
HinGwenWoong's avatar
HinGwenWoong committed
1633
        self.fileDock.setWindowTitle(self.fileListName + f" (1/{self.fileListWidget.count()})")  # show image count
Leif's avatar
Leif committed
1634
1635
1636
1637
1638
1639
1640

    def openPrevImg(self, _value=False):
        if len(self.mImgList) <= 0:
            return

        if self.filePath is None:
            return
1641

Leif's avatar
Leif committed
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
        currIndex = self.mImgList.index(self.filePath)
        self.mImgList5 = self.mImgList[:5]
        if currIndex - 1 >= 0:
            filename = self.mImgList[currIndex - 1]
            self.mImgList5 = self.indexTo5Files(currIndex - 1)
            if filename:
                self.loadFile(filename)

    def openNextImg(self, _value=False):
        if not self.mayContinue():
            return

        if len(self.mImgList) <= 0:
            return

        filename = None
        if self.filePath is None:
            filename = self.mImgList[0]
            self.mImgList5 = self.mImgList[:5]
        else:
            currIndex = self.mImgList.index(self.filePath)
            if currIndex + 1 < len(self.mImgList):
                filename = self.mImgList[currIndex + 1]
                self.mImgList5 = self.indexTo5Files(currIndex + 1)
            else:
                self.mImgList5 = self.indexTo5Files(currIndex)
        if filename:
1669
            print('file name in openNext is ', filename)
Leif's avatar
Leif committed
1670
            self.loadFile(filename)
1671

Leif's avatar
Leif committed
1672
1673
1674
1675
1676
    def updateFileListIcon(self, filename):
        pass

    def saveFile(self, _value=False, mode='Manual'):
        # Manual mode is used for users click "Save" manually,which will change the state of the image
1677
1678
1679
        if self.filePath:
            imgidx = self.getImglabelidx(self.filePath)
            self._saveFile(imgidx, mode=mode)
Leif's avatar
Leif committed
1680

1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
    def saveLockedShapes(self):
        self.canvas.lockedShapes = []
        self.canvas.selectedShapes = []
        for s in self.canvas.shapes:
            if s.line_color == DEFAULT_LOCK_COLOR:
                self.canvas.selectedShapes.append(s)
        self.lockSelectedShape()
        for s in self.canvas.shapes:
            if s.line_color == DEFAULT_LOCK_COLOR:
                self.canvas.selectedShapes.remove(s)
                self.canvas.shapes.remove(s)
Leif's avatar
Leif committed
1692
1693

    def _saveFile(self, annotationFilePath, mode='Manual'):
1694
1695
1696
        if len(self.canvas.lockedShapes) != 0:
            self.saveLockedShapes()

Leif's avatar
Leif committed
1697
        if mode == 'Manual':
1698
1699
1700
1701
            self.result_dic_locked = []
            img = cv2.imread(self.filePath)
            width, height = self.image.width(), self.image.height()
            for shape in self.canvas.lockedShapes:
1702
                box = [[int(p[0] * width), int(p[1] * height)] for p in shape['ratio']]
1703
                assert len(box) == 4
1704
                result = [(shape['transcription'], 1)]
1705
1706
                result.insert(0, box)
                self.result_dic_locked.append(result)
1707
1708
            self.result_dic += self.result_dic_locked
            self.result_dic_locked = []
Leif's avatar
Leif committed
1709
1710
1711
1712
1713
1714
1715
1716
1717
            if annotationFilePath and self.saveLabels(annotationFilePath, mode=mode):
                self.setClean()
                self.statusBar().showMessage('Saved to  %s' % annotationFilePath)
                self.statusBar().show()
                currIndex = self.mImgList.index(self.filePath)
                item = self.fileListWidget.item(currIndex)
                item.setIcon(newIcon('done'))

                self.fileStatedict[self.filePath] = 1
1718
                if len(self.fileStatedict) % self.autoSaveNum == 0:
Leif's avatar
Leif committed
1719
1720
1721
1722
                    self.saveFilestate()
                    self.savePPlabel(mode='Auto')

                self.fileListWidget.insertItem(int(currIndex), item)
1723
1724
                if not self.canvas.isInTheSameImage:
                    self.openNextImg()
Leif's avatar
Leif committed
1725
                self.actions.saveRec.setEnabled(True)
1726
                self.actions.saveLabel.setEnabled(True)
Leif's avatar
Leif committed
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750

        elif mode == 'Auto':
            if annotationFilePath and self.saveLabels(annotationFilePath, mode=mode):
                self.setClean()
                self.statusBar().showMessage('Saved to  %s' % annotationFilePath)
                self.statusBar().show()

    def closeFile(self, _value=False):
        if not self.mayContinue():
            return
        self.resetState()
        self.setClean()
        self.toggleActions(False)
        self.canvas.setEnabled(False)
        self.actions.saveAs.setEnabled(False)

    def deleteImg(self):
        deletePath = self.filePath
        if deletePath is not None:
            deleteInfo = self.deleteImgDialog()
            if deleteInfo == QMessageBox.Yes:
                if platform.system() == 'Windows':
                    from win32com.shell import shell, shellcon
                    shell.SHFileOperation((0, shellcon.FO_DELETE, deletePath, None,
1751
1752
                                           shellcon.FOF_SILENT | shellcon.FOF_ALLOWUNDO | shellcon.FOF_NOCONFIRMATION,
                                           None, None))
Leif's avatar
Leif committed
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
                    # linux
                elif platform.system() == 'Linux':
                    cmd = 'trash ' + deletePath
                    os.system(cmd)
                    # macOS
                elif platform.system() == 'Darwin':
                    import subprocess
                    absPath = os.path.abspath(deletePath).replace('\\', '\\\\').replace('"', '\\"')
                    cmd = ['osascript', '-e',
                           'tell app "Finder" to move {the POSIX file "' + absPath + '"} to trash']
                    print(cmd)
                    subprocess.call(cmd, stdout=open(os.devnull, 'w'))

                if self.filePath in self.fileStatedict.keys():
                    self.fileStatedict.pop(self.filePath)
                imgidx = self.getImglabelidx(self.filePath)
                if imgidx in self.PPlabel.keys():
                    self.PPlabel.pop(imgidx)
                self.openNextImg()
                self.importDirImages(self.lastOpenDir, isDelete=True)

    def deleteImgDialog(self):
        yes, cancel = QMessageBox.Yes, QMessageBox.Cancel
        msg = u'The image will be deleted to the recycle bin'
        return QMessageBox.warning(self, u'Attention', msg, yes | cancel)

    def resetAll(self):
        self.settings.reset()
        self.close()
        proc = QProcess()
        proc.startDetached(os.path.abspath(__file__))

    def mayContinue(self):  #
1786
        if not self.dirty:
Leif's avatar
Leif committed
1787
1788
1789
1790
1791
1792
            return True
        else:
            discardChanges = self.discardChangesDialog()
            if discardChanges == QMessageBox.No:
                return True
            elif discardChanges == QMessageBox.Yes:
1793
                self.canvas.isInTheSameImage = True
Leif's avatar
Leif committed
1794
                self.saveFile()
1795
                self.canvas.isInTheSameImage = False
Leif's avatar
Leif committed
1796
1797
1798
1799
1800
1801
                return True
            else:
                return False

    def discardChangesDialog(self):
        yes, no, cancel = QMessageBox.Yes, QMessageBox.No, QMessageBox.Cancel
1802
1803
1804
1805
        if self.lang == 'ch':
            msg = u'您有未保存的变更, 您想保存再继续吗?\n点击 "No" 丢弃所有未保存的变更.'
        else:
            msg = u'You have unsaved changes, would you like to save them and proceed?\nClick "No" to undo all changes.'
Leif's avatar
Leif committed
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
        return QMessageBox.warning(self, u'Attention', msg, yes | no | cancel)

    def errorMessage(self, title, message):
        return QMessageBox.critical(self, title,
                                    '<p><b>%s</b></p>%s' % (title, message))

    def currentPath(self):
        return os.path.dirname(self.filePath) if self.filePath else '.'

    def chooseColor1(self):
        color = self.colorDialog.getColor(self.lineColor, u'Choose line color',
                                          default=DEFAULT_LINE_COLOR)
        if color:
            self.lineColor = color
            Shape.line_color = color
            self.canvas.setDrawingColor(color)
            self.canvas.update()
            self.setDirty()

    def deleteSelectedShape(self):
1826
1827
        self.remLabels(self.canvas.deleteSelected())
        self.actions.undo.setEnabled(True)
Leif's avatar
Leif committed
1828
1829
1830
1831
        self.setDirty()
        if self.noShapes():
            for action in self.actions.onShapesPresent:
                action.setEnabled(False)
1832
1833
        self.BoxListDock.setWindowTitle(self.BoxListDockName + f" ({self.BoxList.count()})")
        self.labelListDock.setWindowTitle(self.labelListDockName + f" ({self.labelList.count()})")
Leif's avatar
Leif committed
1834
1835
1836
1837
1838

    def chshapeLineColor(self):
        color = self.colorDialog.getColor(self.lineColor, u'Choose line color',
                                          default=DEFAULT_LINE_COLOR)
        if color:
1839
            for shape in self.canvas.selectedShapes: shape.line_color = color
Leif's avatar
Leif committed
1840
1841
1842
1843
1844
1845
1846
            self.canvas.update()
            self.setDirty()

    def chshapeFillColor(self):
        color = self.colorDialog.getColor(self.fillColor, u'Choose fill color',
                                          default=DEFAULT_FILL_COLOR)
        if color:
1847
            for shape in self.canvas.selectedShapes: shape.fill_color = color
Leif's avatar
Leif committed
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
            self.canvas.update()
            self.setDirty()

    def copyShape(self):
        self.canvas.endMove(copy=True)
        self.addLabel(self.canvas.selectedShape)
        self.setDirty()

    def moveShape(self):
        self.canvas.endMove(copy=False)
        self.setDirty()

    def loadPredefinedClasses(self, predefClassesFile):
        if os.path.exists(predefClassesFile) is True:
            with codecs.open(predefClassesFile, 'r', 'utf8') as f:
                for line in f:
                    line = line.strip()
                    if self.labelHist is None:
                        self.labelHist = [line]
                    else:
                        self.labelHist.append(line)

    def togglePaintLabelsOption(self):
        for shape in self.canvas.shapes:
            shape.paintLabel = self.displayLabelOption.isChecked()

    def toogleDrawSquare(self):
        self.canvas.setDrawingShapeToSquare(self.drawSquaresOption.isChecked())

    def additems(self, dirpath):
        for file in self.mImgList:
            pix = QPixmap(file)
            _, filename = os.path.split(file)
            filename, _ = os.path.splitext(filename)
            item = QListWidgetItem(QIcon(pix.scaled(100, 100, Qt.IgnoreAspectRatio, Qt.FastTransformation)),
                                   filename[:10])
            item.setToolTip(file)
            self.iconlist.addItem(item)

    def additems5(self, dirpath):
        for file in self.mImgList5:
            pix = QPixmap(file)
            _, filename = os.path.split(file)
            filename, _ = os.path.splitext(filename)
            pfilename = filename[:10]
            if len(pfilename) < 10:
                lentoken = 12 - len(pfilename)
                prelen = lentoken // 2
                bfilename = prelen * " " + pfilename + (lentoken - prelen) * " "
            # item = QListWidgetItem(QIcon(pix.scaled(100, 100, Qt.KeepAspectRatio, Qt.SmoothTransformation)),filename[:10])
1898
            item = QListWidgetItem(QIcon(pix.scaled(100, 100, Qt.IgnoreAspectRatio, Qt.FastTransformation)), pfilename)
Leif's avatar
Leif committed
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
            # item.setForeground(QBrush(Qt.white))
            item.setToolTip(file)
            self.iconlist.addItem(item)
        owidth = 0
        for index in range(len(self.mImgList5)):
            item = self.iconlist.item(index)
            itemwidget = self.iconlist.visualItemRect(item)
            owidth += itemwidget.width()
        self.iconlist.setMinimumWidth(owidth + 50)

    def getImglabelidx(self, filePath):
1910
        if platform.system() == 'Windows':
Leif's avatar
Leif committed
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
            spliter = '\\'
        else:
            spliter = '/'
        filepathsplit = filePath.split(spliter)[-2:]
        return filepathsplit[0] + '/' + filepathsplit[1]

    def autoRecognition(self):
        assert self.mImgList is not None
        print('Using model from ', self.model)

        uncheckedList = [i for i in self.mImgList if i not in self.fileStatedict.keys()]
        self.autoDialog = AutoDialog(parent=self, ocr=self.ocr, mImgList=uncheckedList, lenbar=len(uncheckedList))
        self.autoDialog.popUp()
1924
        self.currIndex = len(self.mImgList) - 1
1925
        self.loadFile(self.filePath)  # ADD
Leif's avatar
Leif committed
1926
1927
        self.haveAutoReced = True
        self.AutoRecognition.setEnabled(False)
1928
        self.actions.AutoRec.setEnabled(False)
Leif's avatar
Leif committed
1929
1930
1931
1932
1933
1934
1935
1936
        self.setDirty()
        self.saveCacheLabel()

    def reRecognition(self):
        img = cv2.imread(self.filePath)
        # org_box = [dic['points'] for dic in self.PPlabel[self.getImglabelidx(self.filePath)]]
        if self.canvas.shapes:
            self.result_dic = []
1937
            self.result_dic_locked = []  # result_dic_locked stores the ocr result of self.canvas.lockedShapes
Leif's avatar
Leif committed
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
            rec_flag = 0
            for shape in self.canvas.shapes:
                box = [[int(p.x()), int(p.y())] for p in shape.points]
                assert len(box) == 4
                img_crop = get_rotate_crop_image(img, np.array(box, np.float32))
                if img_crop is None:
                    msg = 'Can not recognise the detection box in ' + self.filePath + '. Please change manually'
                    QMessageBox.information(self, "Information", msg)
                    return
                result = self.ocr.ocr(img_crop, cls=True, det=False)
1948
                if result[0][0] != '':
1949
1950
1951
1952
1953
1954
1955
                    if shape.line_color == DEFAULT_LOCK_COLOR:
                        shape.label = result[0][0]
                        result.insert(0, box)
                        self.result_dic_locked.append(result)
                    else:
                        result.insert(0, box)
                        self.result_dic.append(result)
Leif's avatar
Leif committed
1956
1957
                else:
                    print('Can not recognise the box')
1958
1959
                    if shape.line_color == DEFAULT_LOCK_COLOR:
                        shape.label = result[0][0]
1960
                        self.result_dic_locked.append([box, (self.noLabelText, 0)])
1961
                    else:
1962
                        self.result_dic.append([box, (self.noLabelText, 0)])
1963
1964
1965
1966
1967
1968
                try:
                    if self.noLabelText == shape.label or result[1][0] == shape.label:
                        print('label no change')
                    else:
                        rec_flag += 1
                except IndexError as e:
1969
1970
1971
                    print('Can not recognise the box')
            if (len(self.result_dic) > 0 and rec_flag > 0) or self.canvas.lockedShapes:
                self.canvas.isInTheSameImage = True
Leif's avatar
Leif committed
1972
1973
                self.saveFile(mode='Auto')
                self.loadFile(self.filePath)
1974
                self.canvas.isInTheSameImage = False
Leif's avatar
Leif committed
1975
1976
                self.setDirty()
            elif len(self.result_dic) == len(self.canvas.shapes) and rec_flag == 0:
1977
1978
1979
1980
                if self.lang == 'ch':
                    QMessageBox.information(self, "Information", "识别结果保持一致!")
                else:
                    QMessageBox.information(self, "Information", "The recognition result remains unchanged!")
Leif's avatar
Leif committed
1981
1982
1983
1984
1985
            else:
                print('Can not recgonise in ', self.filePath)
        else:
            QMessageBox.information(self, "Information", "Draw a box!")

1986
1987
    def singleRerecognition(self):
        img = cv2.imread(self.filePath)
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
        for shape in self.canvas.selectedShapes:
            box = [[int(p.x()), int(p.y())] for p in shape.points]
            assert len(box) == 4
            img_crop = get_rotate_crop_image(img, np.array(box, np.float32))
            if img_crop is None:
                msg = 'Can not recognise the detection box in ' + self.filePath + '. Please change manually'
                QMessageBox.information(self, "Information", msg)
                return
            result = self.ocr.ocr(img_crop, cls=True, det=False)
            if result[0][0] != '':
                result.insert(0, box)
                print('result in reRec is ', result)
                if result[1][0] == shape.label:
                    print('label no change')
                else:
                    shape.label = result[1][0]
Leif's avatar
Leif committed
2004
2005
2006
2007
2008
2009
2010
2011
            else:
                print('Can not recognise the box')
                if self.noLabelText == shape.label:
                    print('label no change')
                else:
                    shape.label = self.noLabelText
            self.singleLabel(shape)
            self.setDirty()
Leif's avatar
Leif committed
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042

    def autolcm(self):
        vbox = QVBoxLayout()
        hbox = QHBoxLayout()
        self.panel = QLabel()
        self.panel.setText(self.stringBundle.getString('choseModelLg'))
        self.panel.setAlignment(Qt.AlignLeft)
        self.comboBox = QComboBox()
        self.comboBox.setObjectName("comboBox")
        self.comboBox.addItems(['Chinese & English', 'English', 'French', 'German', 'Korean', 'Japanese'])
        vbox.addWidget(self.panel)
        vbox.addWidget(self.comboBox)
        self.dialog = QDialog()
        self.dialog.resize(300, 100)
        self.okBtn = QPushButton(self.stringBundle.getString('ok'))
        self.cancelBtn = QPushButton(self.stringBundle.getString('cancel'))

        self.okBtn.clicked.connect(self.modelChoose)
        self.cancelBtn.clicked.connect(self.cancel)
        self.dialog.setWindowTitle(self.stringBundle.getString('choseModelLg'))

        hbox.addWidget(self.okBtn)
        hbox.addWidget(self.cancelBtn)

        vbox.addWidget(self.panel)
        vbox.addLayout(hbox)
        self.dialog.setLayout(vbox)
        self.dialog.setWindowModality(Qt.ApplicationModal)
        self.dialog.exec_()
        if self.filePath:
            self.AutoRecognition.setEnabled(True)
2043
            self.actions.AutoRec.setEnabled(True)
Leif's avatar
Leif committed
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067

    def modelChoose(self):
        print(self.comboBox.currentText())
        lg_idx = {'Chinese & English': 'ch', 'English': 'en', 'French': 'french', 'German': 'german',
                  'Korean': 'korean', 'Japanese': 'japan'}
        del self.ocr
        self.ocr = PaddleOCR(use_pdserving=False, use_angle_cls=True, det=True, cls=True, use_gpu=False,
                             lang=lg_idx[self.comboBox.currentText()])
        self.dialog.close()

    def cancel(self):
        self.dialog.close()

    def loadFilestate(self, saveDir):
        self.fileStatepath = saveDir + '/fileState.txt'
        self.fileStatedict = {}
        if not os.path.exists(self.fileStatepath):
            f = open(self.fileStatepath, 'w', encoding='utf-8')
        else:
            with open(self.fileStatepath, 'r', encoding='utf-8') as f:
                states = f.readlines()
                for each in states:
                    file, state = each.split('\t')
                    self.fileStatedict[file] = 1
2068
2069
                self.actions.saveLabel.setEnabled(True)
                self.actions.saveRec.setEnabled(True)
Leif's avatar
Leif committed
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094

    def saveFilestate(self):
        with open(self.fileStatepath, 'w', encoding='utf-8') as f:
            for key in self.fileStatedict:
                f.write(key + '\t')
                f.write(str(self.fileStatedict[key]) + '\n')

    def loadLabelFile(self, labelpath):
        labeldict = {}
        if not os.path.exists(labelpath):
            f = open(labelpath, 'w', encoding='utf-8')

        else:
            with open(labelpath, 'r', encoding='utf-8') as f:
                data = f.readlines()
                for each in data:
                    file, label = each.split('\t')
                    if label:
                        label = label.replace('false', 'False')
                        label = label.replace('true', 'True')
                        labeldict[file] = eval(label)
                    else:
                        labeldict[file] = []
        return labeldict

2095
    def savePPlabel(self, mode='Manual'):
Leif's avatar
Leif committed
2096
2097
2098
2099
2100
2101
2102
        savedfile = [self.getImglabelidx(i) for i in self.fileStatedict.keys()]
        with open(self.PPlabelpath, 'w', encoding='utf-8') as f:
            for key in self.PPlabel:
                if key in savedfile and self.PPlabel[key] != []:
                    f.write(key + '\t')
                    f.write(json.dumps(self.PPlabel[key], ensure_ascii=False) + '\n')

2103
2104
2105
2106
2107
        if mode == 'Manual':
            if self.lang == 'ch':
                msg = '已将检查过的图片标签保存在 ' + self.PPlabelpath + " 文件中"
            else:
                msg = 'Images that have been checked are saved in ' + self.PPlabelpath
Leif's avatar
Leif committed
2108
2109
2110
2111
2112
2113
2114
2115
            QMessageBox.information(self, "Information", msg)

    def saveCacheLabel(self):
        with open(self.Cachelabelpath, 'w', encoding='utf-8') as f:
            for key in self.Cachelabel:
                f.write(key + '\t')
                f.write(json.dumps(self.Cachelabel[key], ensure_ascii=False) + '\n')

Leif's avatar
Leif committed
2116
2117
2118
2119
    def saveLabelFile(self):
        self.saveFilestate()
        self.savePPlabel()

Leif's avatar
Leif committed
2120
    def saveRecResult(self):
2121
2122
        if {} in [self.PPlabelpath, self.PPlabel, self.fileStatedict]:
            QMessageBox.information(self, "Information", "Check the image first")
Leif's avatar
Leif committed
2123
2124
2125
2126
            return

        rec_gt_dir = os.path.dirname(self.PPlabelpath) + '/rec_gt.txt'
        crop_img_dir = os.path.dirname(self.PPlabelpath) + '/crop_img/'
2127
        ques_img = []
Leif's avatar
Leif committed
2128
2129
2130
2131
2132
2133
        if not os.path.exists(crop_img_dir):
            os.mkdir(crop_img_dir)

        with open(rec_gt_dir, 'w', encoding='utf-8') as f:
            for key in self.fileStatedict:
                idx = self.getImglabelidx(key)
2134
                try:
Leif's avatar
Leif committed
2135
                    img = cv2.imread(key)
2136
2137
2138
                    for i, label in enumerate(self.PPlabel[idx]):
                        if label['difficult']: continue
                        img_crop = get_rotate_crop_image(img, np.array(label['points'], np.float32))
2139
2140
2141
                        img_name = os.path.splitext(os.path.basename(idx))[0] + '_crop_' + str(i) + '.jpg'
                        cv2.imwrite(crop_img_dir + img_name, img_crop)
                        f.write('crop_img/' + img_name + '\t')
2142
2143
2144
                        f.write(label['transcription'] + '\n')
                except Exception as e:
                    ques_img.append(key)
2145
                    print("Can not read image ", e)
2146
        if ques_img:
2147
2148
2149
2150
2151
            QMessageBox.information(self,
                                    "Information",
                                    "The following images can not be saved, please check the image path and labels.\n"
                                    + "".join(str(i) + '\n' for i in ques_img))
        QMessageBox.information(self, "Information", "Cropped images have been saved in " + str(crop_img_dir))
Leif's avatar
Leif committed
2152

Leif's avatar
Leif committed
2153
2154
2155
2156
2157
2158
2159
2160
2161
    def speedChoose(self):
        if self.labelDialogOption.isChecked():
            self.canvas.newShape.disconnect()
            self.canvas.newShape.connect(partial(self.newShape, True))

        else:
            self.canvas.newShape.disconnect()
            self.canvas.newShape.connect(partial(self.newShape, False))

2162
2163
    def autoSaveFunc(self):
        if self.autoSaveOption.isChecked():
2164
            self.autoSaveNum = 1  # Real auto_Save
2165
2166
2167
2168
            try:
                self.saveLabelFile()
            except:
                pass
2169
2170
            print('The program will automatically save once after confirming an image')
        else:
2171
            self.autoSaveNum = 5  # Used for backup
2172
2173
2174
2175
2176
2177
            print('The program will automatically save once after confirming 5 images (default)')

    def undoShapeEdit(self):
        self.canvas.restoreShape()
        self.labelList.clear()
        self.BoxList.clear()
2178
        self.loadShapes(self.canvas.shapes)
2179
2180
2181
2182
2183
2184
2185
2186
2187
        self.actions.undo.setEnabled(self.canvas.isShapeRestorable)

    def loadShapes(self, shapes, replace=True):
        self._noSelectionSlot = True
        for shape in shapes:
            self.addLabel(shape)
        self.labelList.clearSelection()
        self._noSelectionSlot = False
        self.canvas.loadShapes(shapes, replace=replace)
2188
2189
        print("loadShapes")  # 1

redearly123/PaddleOCR's avatar
redearly123/PaddleOCR committed
2190
    def lockSelectedShape(self):
2191
        """lock the selected shapes.
2192
2193
2194
2195
2196

        Add self.selectedShapes to lock self.canvas.lockedShapes, 
        which holds the ratio of the four coordinates of the locked shapes
        to the width and height of the image
        """
redearly123/PaddleOCR's avatar
redearly123/PaddleOCR committed
2197
        width, height = self.image.width(), self.image.height()
2198

redearly123/PaddleOCR's avatar
redearly123/PaddleOCR committed
2199
2200
2201
2202
        def format_shape(s):
            return dict(label=s.label,  # str
                        line_color=s.line_color.getRgb(),
                        fill_color=s.fill_color.getRgb(),
2203
2204
                        ratio=[[int(p.x()) / width, int(p.y()) / height] for p in s.points],  # QPonitF
                        # add chris
redearly123/PaddleOCR's avatar
redearly123/PaddleOCR committed
2205
                        difficult=s.difficult)  # bool
2206
2207

        # lock
redearly123/PaddleOCR's avatar
redearly123/PaddleOCR committed
2208
2209
        if len(self.canvas.lockedShapes) == 0:
            for s in self.canvas.selectedShapes:
2210
2211
2212
                s.line_color = DEFAULT_LOCK_COLOR
                s.locked = True
            shapes = [format_shape(shape) for shape in self.canvas.selectedShapes]
redearly123/PaddleOCR's avatar
redearly123/PaddleOCR committed
2213
2214
            trans_dic = []
            for box in shapes:
HinGwenWoong's avatar
HinGwenWoong committed
2215
                trans_dic.append({"transcription": box['label'], "ratio": box['ratio'],
2216
                                  "difficult": box['difficult'], "key": "None" if "key" not in box else box["key"]})
redearly123/PaddleOCR's avatar
redearly123/PaddleOCR committed
2217
            self.canvas.lockedShapes = trans_dic
2218
2219
            self.actions.save.setEnabled(True)

2220
        # unlock
redearly123/PaddleOCR's avatar
redearly123/PaddleOCR committed
2221
2222
        else:
            for s in self.canvas.shapes:
2223
2224
2225
2226
2227
                s.line_color = DEFAULT_LINE_COLOR
            self.canvas.lockedShapes = []
            self.result_dic_locked = []
            self.setDirty()
            self.actions.save.setEnabled(True)
2228

Leif's avatar
Leif committed
2229

Leif's avatar
Leif committed
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
def inverted(color):
    return QColor(*[255 - v for v in color.getRgb()])


def read(filename, default=None):
    try:
        with open(filename, 'rb') as f:
            return f.read()
    except:
        return default

2241

Leif's avatar
Leif committed
2242
2243
def str2bool(v):
    return v.lower() in ("true", "t", "1")
Leif's avatar
Leif committed
2244

2245

Leif's avatar
Leif committed
2246
2247
2248
2249
2250
2251
2252
2253
def get_main_app(argv=[]):
    """
    Standard boilerplate Qt application code.
    Do everything but app.exec_() -- so that we can test the application in one thread
    """
    app = QApplication(argv)
    app.setApplicationName(__appname__)
    app.setWindowIcon(newIcon("app"))
2254
    # Tzutalin 201705+: Accept extra arguments to change predefined class file
2255
    arg_parser = argparse.ArgumentParser()
HinGwenWoong's avatar
HinGwenWoong committed
2256
    arg_parser.add_argument("--lang", type=str, default='ch', nargs="?")
2257
    arg_parser.add_argument("--gpu", type=str2bool, default=True, nargs="?")
HinGwenWoong's avatar
HinGwenWoong committed
2258
    arg_parser.add_argument("--kie", type=str2bool, default=True, nargs="?")
2259
2260
2261
2262
2263
2264
2265
    arg_parser.add_argument("--predefined_classes_file",
                            default=os.path.join(os.path.dirname(__file__), "data", "predefined_classes.txt"),
                            nargs="?")
    args = arg_parser.parse_args(argv[1:])

    win = MainWindow(lang=args.lang,
                     gpu=args.gpu,
2266
                     kie_mode=args.kie,
HinGwenWoong's avatar
HinGwenWoong committed
2267
                     default_predefined_class_file=args.predefined_classes_file)
Leif's avatar
Leif committed
2268
2269
2270
2271
2272
    win.show()
    return app, win


def main():
2273
    """construct main app and run it"""
Leif's avatar
Leif committed
2274
2275
2276
2277
2278
    app, _win = get_main_app(sys.argv)
    return app.exec_()


if __name__ == '__main__':
2279

Leif's avatar
Leif committed
2280
2281
2282
    resource_file = './libs/resources.py'
    if not os.path.exists(resource_file):
        output = os.system('pyrcc5 -o libs/resources.py resources.qrc')
2283
        assert output == 0, "operate the cmd have some problems ,please check  whether there is a in the lib " \
Leif's avatar
Leif committed
2284
                            "directory resources.py "
2285

Leif's avatar
Leif committed
2286
    sys.exit(main())