canvas.py 32.2 KB
Newer Older
qq_25193841's avatar
qq_25193841 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
# 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.

try:
    from PyQt5.QtGui import *
    from PyQt5.QtCore import *
    from PyQt5.QtWidgets import *
except ImportError:
    from PyQt4.QtGui import *
    from PyQt4.QtCore import *

#from PyQt4.QtOpenGL import *

from libs.shape import Shape
from libs.utils import distance
赛佬的小迷弟's avatar
赛佬的小迷弟 已提交
26
import copy
qq_25193841's avatar
qq_25193841 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39 40

CURSOR_DEFAULT = Qt.ArrowCursor
CURSOR_POINT = Qt.PointingHandCursor
CURSOR_DRAW = Qt.CrossCursor
CURSOR_MOVE = Qt.ClosedHandCursor
CURSOR_GRAB = Qt.OpenHandCursor

# class Canvas(QGLWidget):


class Canvas(QWidget):
    zoomRequest = pyqtSignal(int)
    scrollRequest = pyqtSignal(int, int)
    newShape = pyqtSignal()
41 42
    # selectionChanged = pyqtSignal(bool)
    selectionChanged = pyqtSignal(list)
qq_25193841's avatar
qq_25193841 已提交
43 44 45 46 47 48
    shapeMoved = pyqtSignal()
    drawingPolygon = pyqtSignal(bool)

    CREATE, EDIT = list(range(2))
    _fill_drawing = False # draw shadows

qq_25193841's avatar
qq_25193841 已提交
49
    epsilon = 5.0
qq_25193841's avatar
qq_25193841 已提交
50 51 52 53 54 55

    def __init__(self, *args, **kwargs):
        super(Canvas, self).__init__(*args, **kwargs)
        # Initialise local state.
        self.mode = self.EDIT
        self.shapes = []
56
        self.shapesBackups = []
qq_25193841's avatar
qq_25193841 已提交
57
        self.current = None
58
        self.selectedShapes = []
qq_25193841's avatar
qq_25193841 已提交
59
        self.selectedShape = None  # save the selected shape here
60
        self.selectedShapesCopy = []
qq_25193841's avatar
qq_25193841 已提交
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
        self.drawingLineColor = QColor(0, 0, 255)
        self.drawingRectColor = QColor(0, 0, 255)
        self.line = Shape(line_color=self.drawingLineColor)
        self.prevPoint = QPointF()
        self.offsets = QPointF(), QPointF()
        self.scale = 1.0
        self.pixmap = QPixmap()
        self.visible = {}
        self._hideBackround = False
        self.hideBackround = False
        self.hShape = None
        self.hVertex = None
        self._painter = QPainter()
        self._cursor = CURSOR_DEFAULT
        # Menus:
        self.menus = (QMenu(), QMenu())
        # Set widget options.
        self.setMouseTracking(True)
        self.setFocusPolicy(Qt.WheelFocus)
        self.verified = False
        self.drawSquare = False
        self.fourpoint = True # ADD
        self.pointnum = 0
84
        self.movingShape = False
赛佬的小迷弟's avatar
赛佬的小迷弟 已提交
85
        self.selectCountShape = False
qq_25193841's avatar
qq_25193841 已提交
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157

        #initialisation for panning
        self.pan_initial_pos = QPoint()

    def setDrawingColor(self, qColor):
        self.drawingLineColor = qColor
        self.drawingRectColor = qColor

    def enterEvent(self, ev):
        self.overrideCursor(self._cursor)

    def leaveEvent(self, ev):
        self.restoreCursor()

    def focusOutEvent(self, ev):
        self.restoreCursor()

    def isVisible(self, shape):
        return self.visible.get(shape, True)

    def drawing(self):
        return self.mode == self.CREATE

    def editing(self):
        return self.mode == self.EDIT

    def setEditing(self, value=True):
        self.mode = self.EDIT if value else self.CREATE
        if not value:  # Create
            self.unHighlight()
            self.deSelectShape()
        self.prevPoint = QPointF()
        self.repaint()

    def unHighlight(self):
        if self.hShape:
            self.hShape.highlightClear()
        self.hVertex = self.hShape = None

    def selectedVertex(self):
        return self.hVertex is not None


    def mouseMoveEvent(self, ev):
        """Update line with last point and current coordinates."""
        pos = self.transformPos(ev.pos())

        # Update coordinates in status bar if image is opened
        window = self.parent().window()
        if window.filePath is not None:
            self.parent().window().labelCoordinates.setText(
                'X: %d; Y: %d' % (pos.x(), pos.y()))

        # Polygon drawing.
        if self.drawing():
            self.overrideCursor(CURSOR_DRAW) # ?
            if self.current:
                # Display annotation width and height while drawing
                currentWidth = abs(self.current[0].x() - pos.x())
                currentHeight = abs(self.current[0].y() - pos.y())
                self.parent().window().labelCoordinates.setText(
                        'Width: %d, Height: %d / X: %d; Y: %d' % (currentWidth, currentHeight, pos.x(), pos.y()))

                color = self.drawingLineColor
                if self.outOfPixmap(pos):
                    # Don't allow the user to draw outside the pixmap.
                    # Clip the coordinates to 0 or max,
                    # if they are outside the range [0, max]
                    size = self.pixmap.size()
                    clipped_x = min(max(0, pos.x()), size.width())
                    clipped_y = min(max(0, pos.y()), size.height())
                    pos = QPointF(clipped_x, clipped_y)
158

159
                elif len(self.current) > 1 and self.closeEnough(pos, self.current[0]):
qq_25193841's avatar
qq_25193841 已提交
160 161 162 163 164 165
                    # Attract line to starting point and colorise to alert the
                    # user:
                    pos = self.current[0]
                    color = self.current.line_color
                    self.overrideCursor(CURSOR_POINT)
                    self.current.highlightVertex(0, Shape.NEAR_VERTEX)
166 167 168

                if self.drawSquare:
                    self.line.points = [self.current[0], pos]
169
                    self.line.close()
qq_25193841's avatar
qq_25193841 已提交
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184

                elif self.fourpoint:
                    self.line[0] = self.current[-1]
                    self.line[1] = pos

                else:
                    self.line[1] = pos # pos is the mouse's current position

                self.line.line_color = color
                self.prevPoint = QPointF() # ?
                self.current.highlightClear()
            else:
                self.prevPoint = pos
            self.repaint()
            return
185

qq_25193841's avatar
qq_25193841 已提交
186 187
        # Polygon copy moving.
        if Qt.RightButton & ev.buttons():
188
            if self.selectedShapesCopy and self.prevPoint:
qq_25193841's avatar
qq_25193841 已提交
189
                self.overrideCursor(CURSOR_MOVE)
190
                self.boundedMoveShape(self.selectedShapesCopy, pos)
qq_25193841's avatar
qq_25193841 已提交
191
                self.repaint()
192 193 194 195
            elif self.selectedShapes:
                self.selectedShapesCopy = [
                    s.copy() for s in self.selectedShapes
                ]
qq_25193841's avatar
qq_25193841 已提交
196 197 198 199 200 201 202
                self.repaint()
            return

        # Polygon/Vertex moving.
        if Qt.LeftButton & ev.buttons():
            if self.selectedVertex():
                self.boundedMoveVertex(pos)
203
                self.shapeMoved.emit()
qq_25193841's avatar
qq_25193841 已提交
204
                self.repaint()
205 206
                self.movingShape = True
            elif self.selectedShapes and self.prevPoint:
qq_25193841's avatar
qq_25193841 已提交
207
                self.overrideCursor(CURSOR_MOVE)
208
                self.boundedMoveShape(self.selectedShapes, pos)
qq_25193841's avatar
qq_25193841 已提交
209 210
                self.shapeMoved.emit()
                self.repaint()
211
                self.movingShape = True
212
            else:
qq_25193841's avatar
qq_25193841 已提交
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
                #pan
                delta_x = pos.x() - self.pan_initial_pos.x()
                delta_y = pos.y() - self.pan_initial_pos.y()
                self.scrollRequest.emit(delta_x, Qt.Horizontal)
                self.scrollRequest.emit(delta_y, Qt.Vertical)
                self.update()
            return

        # Just hovering over the canvas, 2 posibilities:
        # - Highlight shapes
        # - Highlight vertex
        # Update shape/vertex fill and tooltip value accordingly.
        self.setToolTip("Image")
        for shape in reversed([s for s in self.shapes if self.isVisible(s)]):
            # Look for a nearby vertex to highlight. If that fails,
            # check if we happen to be inside a shape.
            index = shape.nearestVertex(pos, self.epsilon)
            if index is not None:
                if self.selectedVertex():
                    self.hShape.highlightClear()
233
                self.hVertex, self.hShape = index, shape
qq_25193841's avatar
qq_25193841 已提交
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
                shape.highlightVertex(index, shape.MOVE_VERTEX)
                self.overrideCursor(CURSOR_POINT)
                self.setToolTip("Click & drag to move point")
                self.setStatusTip(self.toolTip())
                self.update()
                break
            elif shape.containsPoint(pos):
                if self.selectedVertex():
                    self.hShape.highlightClear()
                self.hVertex, self.hShape = None, shape
                self.setToolTip(
                    "Click & drag to move shape '%s'" % shape.label)
                self.setStatusTip(self.toolTip())
                self.overrideCursor(CURSOR_GRAB)
                self.update()
                break
        else:  # Nothing found, clear highlights, reset state.
            if self.hShape:
                self.hShape.highlightClear()
                self.update()
            self.hVertex, self.hShape = None, None
            self.overrideCursor(CURSOR_DEFAULT)

    def mousePressEvent(self, ev):
        pos = self.transformPos(ev.pos())
        if ev.button() == Qt.LeftButton:
            if self.drawing():
                # self.handleDrawing(pos) # OLD
262 263 264 265 266 267 268 269 270 271 272 273
                if self.current:
                    if self.fourpoint: # ADD IF
                        # Add point to existing shape.
                        # print('Adding points in mousePressEvent is ', self.line[1])
                        self.current.addPoint(self.line[1])
                        self.line[0] = self.current[-1]
                        if self.current.isClosed():
                            # print('1111')
                            self.finalise()
                    elif self.drawSquare: # 增加
                        assert len(self.current.points) == 1
                        self.current.points = self.line.points
qq_25193841's avatar
qq_25193841 已提交
274 275 276
                        self.finalise()
                elif not self.outOfPixmap(pos):
                    # Create new shape.
277
                    self.current = Shape()
qq_25193841's avatar
qq_25193841 已提交
278 279 280 281 282 283
                    self.current.addPoint(pos)
                    self.line.points = [pos, pos]
                    self.setHiding()
                    self.drawingPolygon.emit(True)
                    self.update()

284
            else:
285 286
                group_mode = int(ev.modifiers()) == Qt.ControlModifier
                self.selectShapePoint(pos, multiple_selection_mode=group_mode)
qq_25193841's avatar
qq_25193841 已提交
287
                self.prevPoint = pos
288
                self.pan_initial_pos = pos
qq_25193841's avatar
qq_25193841 已提交
289 290

        elif ev.button() == Qt.RightButton and self.editing():
291 292
            group_mode = int(ev.modifiers()) == Qt.ControlModifier
            self.selectShapePoint(pos, multiple_selection_mode=group_mode)
qq_25193841's avatar
qq_25193841 已提交
293 294 295 296 297
            self.prevPoint = pos
        self.update()

    def mouseReleaseEvent(self, ev):
        if ev.button() == Qt.RightButton:
298
            menu = self.menus[bool(self.selectedShapesCopy)]
qq_25193841's avatar
qq_25193841 已提交
299 300
            self.restoreCursor()
            if not menu.exec_(self.mapToGlobal(ev.pos()))\
301
               and self.selectedShapesCopy:
qq_25193841's avatar
qq_25193841 已提交
302
                # Cancel the move by deleting the shadow copy.
303 304
                # self.selectedShapeCopy = None
                self.selectedShapesCopy = []
qq_25193841's avatar
qq_25193841 已提交
305
                self.repaint()
306

307
        elif ev.button() == Qt.LeftButton and self.selectedShapes:
qq_25193841's avatar
qq_25193841 已提交
308 309 310 311 312
            if self.selectedVertex():
                self.overrideCursor(CURSOR_POINT)
            else:
                self.overrideCursor(CURSOR_GRAB)

313
        elif ev.button() == Qt.LeftButton and not self.fourpoint:
qq_25193841's avatar
qq_25193841 已提交
314 315
            pos = self.transformPos(ev.pos())
            if self.drawing():
316
                self.handleDrawing(pos)
qq_25193841's avatar
qq_25193841 已提交
317 318 319 320
            else:
                #pan
                QApplication.restoreOverrideCursor() # ?

321
        if self.movingShape and self.hShape:
322 323
             index = self.shapes.index(self.hShape)
             if (
324
                 self.shapesBackups[-1][index].points
325 326
                 != self.shapes[index].points
             ):
327 328
                 self.storeShapes()
                 self.shapeMoved.emit() # connect to updateBoxlist in PPOCRLabel.py
329 330 331

             self.movingShape = False

qq_25193841's avatar
qq_25193841 已提交
332 333

    def endMove(self, copy=False):
334 335
        assert self.selectedShapes and self.selectedShapesCopy
        assert len(self.selectedShapesCopy) == len(self.selectedShapes)
qq_25193841's avatar
qq_25193841 已提交
336
        if copy:
337 338 339 340
            for i, shape in enumerate(self.selectedShapesCopy):
                self.shapes.append(shape)
                self.selectedShapes[i].selected = False
                self.selectedShapes[i] = shape
qq_25193841's avatar
qq_25193841 已提交
341
        else:
342 343 344 345 346 347
            for i, shape in enumerate(self.selectedShapesCopy):
                self.selectedShapes[i].points = shape.points
        self.selectedShapesCopy = []
        self.repaint()
        self.storeShapes()
        return True
qq_25193841's avatar
qq_25193841 已提交
348 349 350

    def hideBackroundShapes(self, value):
        self.hideBackround = value
351
        if self.selectedShapes:
qq_25193841's avatar
qq_25193841 已提交
352 353 354 355 356
            # Only hide other shapes if there is a current selection.
            # Otherwise the user will not be able to select a shape.
            self.setHiding(True)
            self.repaint()

357
    def handleDrawing(self, pos):
qq_25193841's avatar
qq_25193841 已提交
358 359 360 361 362 363 364 365 366
        if self.current and self.current.reachMaxPoints() is False:
            if self.fourpoint:
                targetPos = self.line[self.pointnum]
                self.current.addPoint(targetPos)
                print('current points in handleDrawing is ', self.line[self.pointnum])
                self.update()
                if self.pointnum == 3:
                    self.finalise()

367
            else:
qq_25193841's avatar
qq_25193841 已提交
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402
                initPos = self.current[0]
                print('initPos', self.current[0])
                minX = initPos.x()
                minY = initPos.y()
                targetPos = self.line[1]
                maxX = targetPos.x()
                maxY = targetPos.y()
                self.current.addPoint(QPointF(maxX, minY))
                self.current.addPoint(targetPos)
                self.current.addPoint(QPointF(minX, maxY))
                self.finalise()

        elif not self.outOfPixmap(pos):
            print('release')
            self.current = Shape()
            self.current.addPoint(pos)
            self.line.points = [pos, pos]
            self.setHiding()
            self.drawingPolygon.emit(True)
            self.update()

    def setHiding(self, enable=True):
        self._hideBackround = self.hideBackround if enable else False

    def canCloseShape(self):
        return self.drawing() and self.current and len(self.current) > 2

    def mouseDoubleClickEvent(self, ev):
        # We need at least 4 points here, since the mousePress handler
        # adds an extra one before this handler is called.
        if self.canCloseShape() and len(self.current) > 3:
            if not self.fourpoint:
                self.current.popPoint()
            self.finalise()

403 404
    def selectShapes(self, shapes):
        for s in shapes: s.seleted = True
qq_25193841's avatar
qq_25193841 已提交
405
        self.setHiding()
406
        self.selectionChanged.emit(shapes)
qq_25193841's avatar
qq_25193841 已提交
407 408
        self.update()

409 410

    def selectShapePoint(self, point, multiple_selection_mode):
qq_25193841's avatar
qq_25193841 已提交
411 412 413
        """Select the first shape created which contains this point."""
        if self.selectedVertex():  # A vertex is marked for selection.
            index, shape = self.hVertex, self.hShape
414
            shape.highlightVertex(index, shape.MOVE_VERTEX)
qq_25193841's avatar
qq_25193841 已提交
415
            return self.hVertex
416 417 418 419 420 421
        else:
            for shape in reversed(self.shapes):
                if self.isVisible(shape) and shape.containsPoint(point):
                    self.calculateOffsets(shape, point)
                    self.setHiding()
                    if multiple_selection_mode:
422
                        if shape not in self.selectedShapes: # list
423
                            self.selectionChanged.emit(
424
                                self.selectedShapes + [shape]
425 426 427 428 429
                            )
                    else:
                        self.selectionChanged.emit([shape])
                    return
        self.deSelectShape()
qq_25193841's avatar
qq_25193841 已提交
430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473

    def calculateOffsets(self, shape, point):
        rect = shape.boundingRect()
        x1 = rect.x() - point.x()
        y1 = rect.y() - point.y()
        x2 = (rect.x() + rect.width()) - point.x()
        y2 = (rect.y() + rect.height()) - point.y()
        self.offsets = QPointF(x1, y1), QPointF(x2, y2)

    def snapPointToCanvas(self, x, y):
        """
        Moves a point x,y to within the boundaries of the canvas.
        :return: (x,y,snapped) where snapped is True if x or y were changed, False if not.
        """
        if x < 0 or x > self.pixmap.width() or y < 0 or y > self.pixmap.height():
            x = max(x, 0)
            y = max(y, 0)
            x = min(x, self.pixmap.width())
            y = min(y, self.pixmap.height())
            return x, y, True

        return x, y, False

    def boundedMoveVertex(self, pos):
        index, shape = self.hVertex, self.hShape
        point = shape[index]
        if self.outOfPixmap(pos):
            size = self.pixmap.size()
            clipped_x = min(max(0, pos.x()), size.width())
            clipped_y = min(max(0, pos.y()), size.height())
            pos = QPointF(clipped_x, clipped_y)

        if self.drawSquare:
            opposite_point_index = (index + 2) % 4
            opposite_point = shape[opposite_point_index]

            min_size = min(abs(pos.x() - opposite_point.x()), abs(pos.y() - opposite_point.y()))
            directionX = -1 if pos.x() - opposite_point.x() < 0 else 1
            directionY = -1 if pos.y() - opposite_point.y() < 0 else 1
            shiftPos = QPointF(opposite_point.x() + directionX * min_size - point.x(),
                               opposite_point.y() + directionY * min_size - point.y())
        else:
            shiftPos = pos - point

474 475
        if [shape[0].x(), shape[0].y(), shape[2].x(), shape[2].y()] \
                == [shape[3].x(),shape[1].y(),shape[1].x(),shape[3].y()]:
476 477 478 479 480 481 482 483 484 485 486 487 488
            shape.moveVertexBy(index, shiftPos)
            lindex = (index + 1) % 4
            rindex = (index + 3) % 4
            lshift = None
            rshift = None
            if index % 2 == 0:
                rshift = QPointF(shiftPos.x(), 0)
                lshift = QPointF(0, shiftPos.y())
            else:
                lshift = QPointF(shiftPos.x(), 0)
                rshift = QPointF(0, shiftPos.y())
            shape.moveVertexBy(rindex, rshift)
            shape.moveVertexBy(lindex, lshift)
qq_25193841's avatar
qq_25193841 已提交
489 490

        else:
491 492
            shape.moveVertexBy(index, shiftPos)

qq_25193841's avatar
qq_25193841 已提交
493

494
    def boundedMoveShape(self, shapes, pos):
495
        if type(shapes).__name__ != 'list': shapes = [shapes]
qq_25193841's avatar
qq_25193841 已提交
496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511
        if self.outOfPixmap(pos):
            return False  # No need to move
        o1 = pos + self.offsets[0]
        if self.outOfPixmap(o1):
            pos -= QPointF(min(0, o1.x()), min(0, o1.y()))
        o2 = pos + self.offsets[1]
        if self.outOfPixmap(o2):
            pos += QPointF(min(0, self.pixmap.width() - o2.x()),
                           min(0, self.pixmap.height() - o2.y()))
        # The next line tracks the new position of the cursor
        # relative to the shape, but also results in making it
        # a bit "shaky" when nearing the border and allows it to
        # go outside of the shape's area for some reason. XXX
        #self.calculateOffsets(self.selectedShape, pos)
        dp = pos - self.prevPoint
        if dp:
512 513
            for shape in shapes:
                shape.moveBy(dp)
qq_25193841's avatar
qq_25193841 已提交
514 515 516 517 518
            self.prevPoint = pos
            return True
        return False

    def deSelectShape(self):
519 520
        if self.selectedShapes:
            for shape in self.selectedShapes: shape.selected=False
qq_25193841's avatar
qq_25193841 已提交
521
            self.setHiding(False)
522
            self.selectionChanged.emit([])
qq_25193841's avatar
qq_25193841 已提交
523 524 525
            self.update()

    def deleteSelected(self):
526 527 528 529 530
        deleted_shapes = []
        if self.selectedShapes:
            for shape in self.selectedShapes:
                self.shapes.remove(shape)
                deleted_shapes.append(shape)
531
            self.storeShapes()
532
            self.selectedShapes = []
qq_25193841's avatar
qq_25193841 已提交
533
            self.update()
534 535 536 537 538 539 540 541
        return deleted_shapes

    def storeShapes(self):
        shapesBackup = []
        for shape in self.shapes:
            shapesBackup.append(shape.copy())
        if len(self.shapesBackups) >= 10:
            self.shapesBackups = self.shapesBackups[-9:]
542
        self.shapesBackups.append(shapesBackup)
qq_25193841's avatar
qq_25193841 已提交
543 544

    def copySelectedShape(self):
545 546 547 548 549
        if self.selectedShapes:
            self.selectedShapesCopy = [s.copy() for s in self.selectedShapes]
            self.boundedShiftShapes(self.selectedShapesCopy)
            self.endMove(copy=True)
        return self.selectedShapes
qq_25193841's avatar
qq_25193841 已提交
550

551
    def boundedShiftShapes(self, shapes):
qq_25193841's avatar
qq_25193841 已提交
552 553
        # Try to move in one direction, and if it fails in another.
        # Give up if both fail.
554 555 556 557 558 559 560
        for shape in shapes:
            point = shape[0]
            offset = QPointF(2.0, 2.0)
            self.calculateOffsets(shape, point)
            self.prevPoint = point
            if not self.boundedMoveShape(shape, point - offset):
                self.boundedMoveShape(shape, point + offset)
qq_25193841's avatar
qq_25193841 已提交
561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583

    def paintEvent(self, event):
        if not self.pixmap:
            return super(Canvas, self).paintEvent(event)

        p = self._painter
        p.begin(self)
        p.setRenderHint(QPainter.Antialiasing)
        p.setRenderHint(QPainter.HighQualityAntialiasing)
        p.setRenderHint(QPainter.SmoothPixmapTransform)

        p.scale(self.scale, self.scale)
        p.translate(self.offsetToCenter())

        p.drawPixmap(0, 0, self.pixmap)
        Shape.scale = self.scale
        for shape in self.shapes:
            if (shape.selected or not self._hideBackround) and self.isVisible(shape):
                shape.fill = shape.selected or shape == self.hShape
                shape.paint(p)
        if self.current:
            self.current.paint(p)
            self.line.paint(p)
584 585 586
        if self.selectedShapesCopy:
            for s in self.selectedShapesCopy:
                s.paint(p)
qq_25193841's avatar
qq_25193841 已提交
587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 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 671 672 673 674 675 676 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

        # Paint rect
        if self.current is not None and len(self.line) == 2 and not self.fourpoint:
            # print('Drawing rect')
            leftTop = self.line[0]
            rightBottom = self.line[1]
            rectWidth = rightBottom.x() - leftTop.x()
            rectHeight = rightBottom.y() - leftTop.y()
            p.setPen(self.drawingRectColor)
            brush = QBrush(Qt.BDiagPattern)
            p.setBrush(brush)
            p.drawRect(leftTop.x(), leftTop.y(), rectWidth, rectHeight)


        # ADD:
        if (
                self.fillDrawing()
                and self.fourpoint
                and self.current is not None
                and len(self.current.points) >= 2
        ):
            print('paint event')
            drawing_shape = self.current.copy()
            drawing_shape.addPoint(self.line[1])
            drawing_shape.fill = True
            drawing_shape.paint(p)

        if self.drawing() and not self.prevPoint.isNull() and not self.outOfPixmap(self.prevPoint):
            p.setPen(QColor(0, 0, 0))
            p.drawLine(self.prevPoint.x(), 0, self.prevPoint.x(), self.pixmap.height())
            p.drawLine(0, self.prevPoint.y(), self.pixmap.width(), self.prevPoint.y())

        self.setAutoFillBackground(True)
        if self.verified:
            pal = self.palette()
            pal.setColor(self.backgroundRole(), QColor(184, 239, 38, 128))
            self.setPalette(pal)
        else:
            pal = self.palette()
            pal.setColor(self.backgroundRole(), QColor(232, 232, 232, 255))
            self.setPalette(pal)

        p.end()

    def fillDrawing(self):
        return self._fill_drawing

    def transformPos(self, point):
        """Convert from widget-logical coordinates to painter-logical coordinates."""
        return point / self.scale - self.offsetToCenter()

    def offsetToCenter(self):
        s = self.scale
        area = super(Canvas, self).size()
        w, h = self.pixmap.width() * s, self.pixmap.height() * s
        aw, ah = area.width(), area.height()
        x = (aw - w) / (2 * s) if aw > w else 0
        y = (ah - h) / (2 * s) if ah > h else 0
        return QPointF(x, y)

    def outOfPixmap(self, p):
        w, h = self.pixmap.width(), self.pixmap.height()
        return not (0 <= p.x() <= w and 0 <= p.y() <= h)

    def finalise(self):
        assert self.current
        if self.current.points[0] == self.current.points[-1]:
            # print('finalse')
            self.current = None
            self.drawingPolygon.emit(False)
            self.update()
            return

        self.current.close()
        self.shapes.append(self.current)
        self.current = None
        self.setHiding(False)
        self.newShape.emit()
        self.update()

    def closeEnough(self, p1, p2):
        #d = distance(p1 - p2)
        #m = (p1-p2).manhattanLength()
        # print "d %.2f, m %d, %.2f" % (d, m, d - m)
        return distance(p1 - p2) < self.epsilon

    # These two, along with a call to adjustSize are required for the
    # scroll area.
    def sizeHint(self):
        return self.minimumSizeHint()

    def minimumSizeHint(self):
        if self.pixmap:
            return self.scale * self.pixmap.size()
        return super(Canvas, self).minimumSizeHint()

    def wheelEvent(self, ev):
        qt_version = 4 if hasattr(ev, "delta") else 5
        if qt_version == 4:
            if ev.orientation() == Qt.Vertical:
                v_delta = ev.delta()
                h_delta = 0
            else:
                h_delta = ev.delta()
                v_delta = 0
        else:
            delta = ev.angleDelta()
            h_delta = delta.x()
            v_delta = delta.y()

        mods = ev.modifiers()
        if Qt.ControlModifier == int(mods) and v_delta:
            self.zoomRequest.emit(v_delta)
        else:
            v_delta and self.scrollRequest.emit(v_delta, Qt.Vertical)
            h_delta and self.scrollRequest.emit(h_delta, Qt.Horizontal)
        ev.accept()

    def keyPressEvent(self, ev):
        key = ev.key()
赛佬的小迷弟's avatar
赛佬的小迷弟 已提交
707 708 709 710
        shapesBackup = []
        shapesBackup = copy.deepcopy(self.shapes)
        self.shapesBackups.pop()
        self.shapesBackups.append(shapesBackup)
qq_25193841's avatar
qq_25193841 已提交
711 712 713 714 715 716 717
        if key == Qt.Key_Escape and self.current:
            print('ESC press')
            self.current = None
            self.drawingPolygon.emit(False)
            self.update()
        elif key == Qt.Key_Return and self.canCloseShape():
            self.finalise()
赛佬的小迷弟's avatar
赛佬的小迷弟 已提交
718
        elif key == Qt.Key_Left and self.selectedShapes:
719
             self.moveOnePixel('Left')
赛佬的小迷弟's avatar
赛佬的小迷弟 已提交
720
        elif key == Qt.Key_Right and self.selectedShapes:
721
             self.moveOnePixel('Right')
赛佬的小迷弟's avatar
赛佬的小迷弟 已提交
722
        elif key == Qt.Key_Up and self.selectedShapes:
723
             self.moveOnePixel('Up')
赛佬的小迷弟's avatar
赛佬的小迷弟 已提交
724
        elif key == Qt.Key_Down and self.selectedShapes:
725
             self.moveOnePixel('Down')
qq_25193841's avatar
qq_25193841 已提交
726 727 728

    def moveOnePixel(self, direction):
        # print(self.selectedShape.points)
赛佬的小迷弟's avatar
赛佬的小迷弟 已提交
729 730
        self.selectCount = len(self.selectedShapes)
        self.selectCountShape = True
赛佬的小迷弟's avatar
赛佬的小迷弟 已提交
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
        for i in range(len(self.selectedShapes)):
            self.selectedShape = self.selectedShapes[i]
            if direction == 'Left' and not self.moveOutOfBound(QPointF(-1.0, 0)):
                # print("move Left one pixel")
                self.selectedShape.points[0] += QPointF(-1.0, 0)
                self.selectedShape.points[1] += QPointF(-1.0, 0)
                self.selectedShape.points[2] += QPointF(-1.0, 0)
                self.selectedShape.points[3] += QPointF(-1.0, 0)
            elif direction == 'Right' and not self.moveOutOfBound(QPointF(1.0, 0)):
                # print("move Right one pixel")
                self.selectedShape.points[0] += QPointF(1.0, 0)
                self.selectedShape.points[1] += QPointF(1.0, 0)
                self.selectedShape.points[2] += QPointF(1.0, 0)
                self.selectedShape.points[3] += QPointF(1.0, 0)
            elif direction == 'Up' and not self.moveOutOfBound(QPointF(0, -1.0)):
                # print("move Up one pixel")
                self.selectedShape.points[0] += QPointF(0, -1.0)
                self.selectedShape.points[1] += QPointF(0, -1.0)
                self.selectedShape.points[2] += QPointF(0, -1.0)
                self.selectedShape.points[3] += QPointF(0, -1.0)
            elif direction == 'Down' and not self.moveOutOfBound(QPointF(0, 1.0)):
                # print("move Down one pixel")
                self.selectedShape.points[0] += QPointF(0, 1.0)
                self.selectedShape.points[1] += QPointF(0, 1.0)
                self.selectedShape.points[2] += QPointF(0, 1.0)
                self.selectedShape.points[3] += QPointF(0, 1.0)
赛佬的小迷弟's avatar
赛佬的小迷弟 已提交
757 758 759
            shapesBackup = []
            shapesBackup = copy.deepcopy(self.shapes)
            self.shapesBackups.append(shapesBackup)
赛佬的小迷弟's avatar
赛佬的小迷弟 已提交
760 761
            self.shapeMoved.emit()
            self.repaint()
qq_25193841's avatar
qq_25193841 已提交
762 763 764 765 766 767 768 769 770 771 772 773 774

    def moveOutOfBound(self, step):
        points = [p1+p2 for p1, p2 in zip(self.selectedShape.points, [step]*4)]
        return True in map(self.outOfPixmap, points)

    def setLastLabel(self, text, line_color  = None, fill_color = None):
        assert text
        self.shapes[-1].label = text
        if line_color:
            self.shapes[-1].line_color = line_color

        if fill_color:
            self.shapes[-1].fill_color = fill_color
775
        self.storeShapes()
qq_25193841's avatar
qq_25193841 已提交
776 777 778 779 780 781 782 783 784 785

        return self.shapes[-1]

    def undoLastLine(self):
        assert self.shapes
        self.current = self.shapes.pop()
        self.current.setOpen()
        self.line.points = [self.current[-1], self.current[0]]
        self.drawingPolygon.emit(True)

786 787 788 789 790 791 792 793 794 795 796
    def undoLastPoint(self):
        if not self.current or self.current.isClosed():
            return
        self.current.popPoint()
        if len(self.current) > 0:
            self.line[0] = self.current[-1]
        else:
            self.current = None
            self.drawingPolygon.emit(False)
        self.repaint()

qq_25193841's avatar
qq_25193841 已提交
797 798 799 800 801 802 803 804 805 806 807 808 809
    def resetAllLines(self):
        assert self.shapes
        self.current = self.shapes.pop()
        self.current.setOpen()
        self.line.points = [self.current[-1], self.current[0]]
        self.drawingPolygon.emit(True)
        self.current = None
        self.drawingPolygon.emit(False)
        self.update()

    def loadPixmap(self, pixmap):
        self.pixmap = pixmap
        self.shapes = []
810
        self.repaint()
qq_25193841's avatar
qq_25193841 已提交
811

812 813 814 815 816
    def loadShapes(self, shapes, replace=True):
        if replace:
            self.shapes = list(shapes)
        else:
            self.shapes.extend(shapes)
qq_25193841's avatar
qq_25193841 已提交
817
        self.current = None
818 819 820 821
        self.hShape = None
        self.hVertex = None
        # self.hEdge = None
        self.storeShapes()
qq_25193841's avatar
qq_25193841 已提交
822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847
        self.repaint()

    def setShapeVisible(self, shape, value):
        self.visible[shape] = value
        self.repaint()

    def currentCursor(self):
        cursor = QApplication.overrideCursor()
        if cursor is not None:
            cursor = cursor.shape()
        return cursor

    def overrideCursor(self, cursor):
        self._cursor = cursor
        if self.currentCursor() is None:
            QApplication.setOverrideCursor(cursor)
        else:
            QApplication.changeOverrideCursor(cursor)

    def restoreCursor(self):
        QApplication.restoreOverrideCursor()

    def resetState(self):
        self.restoreCursor()
        self.pixmap = None
        self.update()
848
        self.shapesBackups = []
qq_25193841's avatar
qq_25193841 已提交
849 850 851

    def setDrawingShapeToSquare(self, status):
        self.drawSquare = status
852

853
    def restoreShape(self):
854 855
        if not self.isShapeRestorable:
            return
赛佬的小迷弟's avatar
赛佬的小迷弟 已提交
856 857 858 859
        if self.selectCountShape:
            if len(self.shapesBackups) > 2:
                for i in range(1,self.selectCount):
                    self.shapesBackups.pop()
860 861 862 863 864 865 866 867 868 869 870 871 872
        self.shapesBackups.pop()  # latest
        shapesBackup = self.shapesBackups.pop()
        self.shapes = shapesBackup
        self.selectedShapes = []
        for shape in self.shapes:
            shape.selected = False
        self.repaint()

    @property
    def isShapeRestorable(self):
        if len(self.shapesBackups) < 2:
            return False
        return True