shape.py 9.6 KB
Newer Older
qq_25193841's avatar
qq_25193841 已提交
1 2 3 4 5 6 7 8 9 10 11 12
# 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.
13
# !/usr/bin/python
qq_25193841's avatar
qq_25193841 已提交
14
# -*- coding: utf-8 -*-
15 16
import math
import sys
qq_25193841's avatar
qq_25193841 已提交
17

18 19
from PyQt5.QtCore import QPointF
from PyQt5.QtGui import QColor, QPen, QPainterPath, QFont
qq_25193841's avatar
qq_25193841 已提交
20 21 22 23 24 25 26 27
from libs.utils import distance

DEFAULT_LINE_COLOR = QColor(0, 255, 0, 128)
DEFAULT_FILL_COLOR = QColor(255, 0, 0, 128)
DEFAULT_SELECT_LINE_COLOR = QColor(255, 255, 255)
DEFAULT_SELECT_FILL_COLOR = QColor(0, 128, 255, 155)
DEFAULT_VERTEX_FILL_COLOR = QColor(0, 255, 0, 255)
DEFAULT_HVERTEX_FILL_COLOR = QColor(255, 0, 0)
R
redearly123/PaddleOCR 已提交
28
DEFAULT_LOCK_COLOR = QColor(255, 0, 255)
qq_25193841's avatar
qq_25193841 已提交
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
MIN_Y_LABEL = 10


class Shape(object):
    P_SQUARE, P_ROUND = range(2)

    MOVE_VERTEX, NEAR_VERTEX = range(2)

    # The following class variables influence the drawing
    # of _all_ shape objects.
    line_color = DEFAULT_LINE_COLOR
    fill_color = DEFAULT_FILL_COLOR
    select_line_color = DEFAULT_SELECT_LINE_COLOR
    select_fill_color = DEFAULT_SELECT_FILL_COLOR
    vertex_fill_color = DEFAULT_VERTEX_FILL_COLOR
    hvertex_fill_color = DEFAULT_HVERTEX_FILL_COLOR
    point_type = P_ROUND
    point_size = 8
    scale = 1.0

W
whjdark 已提交
49
    def __init__(self, label=None, line_color=None, difficult=False, key_cls="None", paintLabel=False, paintIdx=False):
qq_25193841's avatar
qq_25193841 已提交
50
        self.label = label
W
whjdark 已提交
51
        self.idx = None # bbox order, only for table annotation
qq_25193841's avatar
qq_25193841 已提交
52 53 54 55
        self.points = []
        self.fill = False
        self.selected = False
        self.difficult = difficult
56
        self.key_cls = key_cls
qq_25193841's avatar
qq_25193841 已提交
57
        self.paintLabel = paintLabel
W
whjdark 已提交
58
        self.paintIdx = paintIdx
R
redearly123/PaddleOCR 已提交
59
        self.locked = False
60 61
        self.direction = 0
        self.center = None
qq_25193841's avatar
qq_25193841 已提交
62
        self.epsilon = 5  # same as canvas
qq_25193841's avatar
qq_25193841 已提交
63 64 65 66 67 68
        self._highlightIndex = None
        self._highlightMode = self.NEAR_VERTEX
        self._highlightSettings = {
            self.NEAR_VERTEX: (4, self.P_ROUND),
            self.MOVE_VERTEX: (1.5, self.P_SQUARE),
        }
W
whjdark 已提交
69
        self.fontsize = 8
qq_25193841's avatar
qq_25193841 已提交
70 71 72 73 74 75 76 77 78

        self._closed = False

        if line_color is not None:
            # Override the class line_color attribute
            # with an object attribute. Currently this
            # is used for drawing the pending line a different color.
            self.line_color = line_color

79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
    def rotate(self, theta):
        for i, p in enumerate(self.points):
            self.points[i] = self.rotatePoint(p, theta)
        self.direction -= theta
        self.direction = self.direction % (2 * math.pi)

    def rotatePoint(self, p, theta):
        order = p - self.center
        cosTheta = math.cos(theta)
        sinTheta = math.sin(theta)
        pResx = cosTheta * order.x() + sinTheta * order.y()
        pResy = - sinTheta * order.x() + cosTheta * order.y()
        pRes = QPointF(self.center.x() + pResx, self.center.y() + pResy)
        return pRes

qq_25193841's avatar
qq_25193841 已提交
94
    def close(self):
95 96
        self.center = QPointF((self.points[0].x() + self.points[2].x()) / 2,
                              (self.points[0].y() + self.points[2].y()) / 2)
qq_25193841's avatar
qq_25193841 已提交
97 98 99 100 101 102 103 104
        self._closed = True

    def reachMaxPoints(self):
        if len(self.points) >= 4:
            return True
        return False

    def addPoint(self, point):
qq_25193841's avatar
qq_25193841 已提交
105
        if self.reachMaxPoints() and self.closeEnough(self.points[0], point):
106 107
            self.close()
        else:
qq_25193841's avatar
qq_25193841 已提交
108
            self.points.append(point)
qq_25193841's avatar
qq_25193841 已提交
109

qq_25193841's avatar
qq_25193841 已提交
110 111 112
    def closeEnough(self, p1, p2):
        return distance(p1 - p2) < self.epsilon

qq_25193841's avatar
qq_25193841 已提交
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
    def popPoint(self):
        if self.points:
            return self.points.pop()
        return None

    def isClosed(self):
        return self._closed

    def setOpen(self):
        self._closed = False

    def paint(self, painter):
        if self.points:
            color = self.select_line_color if self.selected else self.line_color
            pen = QPen(color)
            # Try using integer sizes for smoother drawing(?)
W
whjdark 已提交
129 130
            # no need, it casuses that font is too small in high-resolusion image
            # pen.setWidth(max(1, int(round(2.0 / self.scale))))
qq_25193841's avatar
qq_25193841 已提交
131 132 133 134 135 136 137 138 139
            painter.setPen(pen)

            line_path = QPainterPath()
            vrtx_path = QPainterPath()

            line_path.moveTo(self.points[0])
            # Uncommenting the following line will draw 2 paths
            # for the 1st vertex, and make it non-filled, which
            # may be desirable.
140
            # self.drawVertex(vrtx_path, 0)
qq_25193841's avatar
qq_25193841 已提交
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160

            for i, p in enumerate(self.points):
                line_path.lineTo(p)
                self.drawVertex(vrtx_path, i)
            if self.isClosed():
                line_path.lineTo(self.points[0])

            painter.drawPath(line_path)
            painter.drawPath(vrtx_path)
            painter.fillPath(vrtx_path, self.vertex_fill_color)

            # Draw text at the top-left
            if self.paintLabel:
                min_x = sys.maxsize
                min_y = sys.maxsize
                for point in self.points:
                    min_x = min(min_x, point.x())
                    min_y = min(min_y, point.y())
                if min_x != sys.maxsize and min_y != sys.maxsize:
                    font = QFont()
W
whjdark 已提交
161
                    font.setPointSize(self.fontsize)
qq_25193841's avatar
qq_25193841 已提交
162 163
                    font.setBold(True)
                    painter.setFont(font)
164
                    if self.label is None:
qq_25193841's avatar
qq_25193841 已提交
165
                        self.label = ""
166
                    if min_y < MIN_Y_LABEL:
qq_25193841's avatar
qq_25193841 已提交
167 168 169
                        min_y += MIN_Y_LABEL
                    painter.drawText(min_x, min_y, self.label)

W
whjdark 已提交
170 171 172 173 174 175 176 177 178
            # Draw number at the top-right
            if self.paintIdx:
                min_x = sys.maxsize
                min_y = sys.maxsize
                for point in self.points:
                    min_x = min(min_x, point.x())
                    min_y = min(min_y, point.y())
                if min_x != sys.maxsize and min_y != sys.maxsize:
                    font = QFont()
W
whjdark 已提交
179
                    font.setPointSize(self.fontsize)
W
whjdark 已提交
180 181 182 183 184 185 186 187 188
                    font.setBold(True)
                    painter.setFont(font)
                    text = ''
                    if self.idx != None:
                        text = str(self.idx)
                    if min_y < MIN_Y_LABEL:
                        min_y += MIN_Y_LABEL
                    painter.drawText(min_x, min_y, text)

qq_25193841's avatar
qq_25193841 已提交
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
            if self.fill:
                color = self.select_fill_color if self.selected else self.fill_color
                painter.fillPath(line_path, color)

    def drawVertex(self, path, i):
        d = self.point_size / self.scale
        shape = self.point_type
        point = self.points[i]
        if i == self._highlightIndex:
            size, shape = self._highlightSettings[self._highlightMode]
            d *= size
        if self._highlightIndex is not None:
            self.vertex_fill_color = self.hvertex_fill_color
        else:
            self.vertex_fill_color = Shape.vertex_fill_color
        if shape == self.P_SQUARE:
            path.addRect(point.x() - d / 2, point.y() - d / 2, d, d)
        elif shape == self.P_ROUND:
            path.addEllipse(point, d / 2.0, d / 2.0)
        else:
            assert False, "unsupported vertex shape"

    def nearestVertex(self, point, epsilon):
        for i, p in enumerate(self.points):
            if distance(p - point) <= epsilon:
                return i
        return None

    def containsPoint(self, point):
        return self.makePath().contains(point)

    def makePath(self):
        path = QPainterPath(self.points[0])
        for p in self.points[1:]:
            path.lineTo(p)
        return path

    def boundingRect(self):
        return self.makePath().boundingRect()

    def moveBy(self, offset):
        self.points = [p + offset for p in self.points]

    def moveVertexBy(self, i, offset):
        self.points[i] = self.points[i] + offset

    def highlightVertex(self, i, action):
        self._highlightIndex = i
        self._highlightMode = action

    def highlightClear(self):
        self._highlightIndex = None

    def copy(self):
        shape = Shape("%s" % self.label)
        shape.points = [p for p in self.points]
245 246
        shape.center = self.center
        shape.direction = self.direction
qq_25193841's avatar
qq_25193841 已提交
247 248 249 250 251 252 253 254
        shape.fill = self.fill
        shape.selected = self.selected
        shape._closed = self._closed
        if self.line_color != Shape.line_color:
            shape.line_color = self.line_color
        if self.fill_color != Shape.fill_color:
            shape.fill_color = self.fill_color
        shape.difficult = self.difficult
255
        shape.key_cls = self.key_cls
qq_25193841's avatar
qq_25193841 已提交
256 257 258 259 260 261 262 263 264 265
        return shape

    def __len__(self):
        return len(self.points)

    def __getitem__(self, key):
        return self.points[key]

    def __setitem__(self, key, value):
        self.points[key] = value