Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
wangsen
paddle_dbnet
Commits
4743843a
"ppstructure/layout/README_ch.md" did not exist on "bec6ab0231513aa9d3af5312f5e8216a1671eb10"
Unverified
Commit
4743843a
authored
Aug 09, 2021
by
Evezerest
Committed by
GitHub
Aug 09, 2021
Browse files
Merge pull request #3399 from d2623587501/dygraph
Update move box
parents
f262e33e
ac8ba5fc
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
53 additions
and
31 deletions
+53
-31
PPOCRLabel/PPOCRLabel.py
PPOCRLabel/PPOCRLabel.py
+6
-1
PPOCRLabel/libs/canvas.py
PPOCRLabel/libs/canvas.py
+47
-30
No files found.
PPOCRLabel/PPOCRLabel.py
View file @
4743843a
...
...
@@ -885,7 +885,12 @@ class MainWindow(QMainWindow, WindowMixin):
self
.
updateComboBox
()
def
updateBoxlist
(
self
):
for
shape
in
self
.
canvas
.
selectedShapes
+
[
self
.
canvas
.
hShape
]:
self
.
canvas
.
selectedShapes_hShape
=
[]
if
self
.
canvas
.
hShape
!=
None
:
self
.
canvas
.
selectedShapes_hShape
=
self
.
canvas
.
selectedShapes
+
[
self
.
canvas
.
hShape
]
else
:
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
))
...
...
PPOCRLabel/libs/canvas.py
View file @
4743843a
...
...
@@ -23,6 +23,7 @@ except ImportError:
from
libs.shape
import
Shape
from
libs.utils
import
distance
import
copy
CURSOR_DEFAULT
=
Qt
.
ArrowCursor
CURSOR_POINT
=
Qt
.
PointingHandCursor
...
...
@@ -81,6 +82,7 @@ class Canvas(QWidget):
self
.
fourpoint
=
True
# ADD
self
.
pointnum
=
0
self
.
movingShape
=
False
self
.
selectCountShape
=
False
#initialisation for panning
self
.
pan_initial_pos
=
QPoint
()
...
...
@@ -702,6 +704,10 @@ class Canvas(QWidget):
def
keyPressEvent
(
self
,
ev
):
key
=
ev
.
key
()
shapesBackup
=
[]
shapesBackup
=
copy
.
deepcopy
(
self
.
shapes
)
self
.
shapesBackups
.
pop
()
self
.
shapesBackups
.
append
(
shapesBackup
)
if
key
==
Qt
.
Key_Escape
and
self
.
current
:
print
(
'ESC press'
)
self
.
current
=
None
...
...
@@ -709,17 +715,21 @@ class Canvas(QWidget):
self
.
update
()
elif
key
==
Qt
.
Key_Return
and
self
.
canCloseShape
():
self
.
finalise
()
elif
key
==
Qt
.
Key_Left
and
self
.
selectedShape
:
elif
key
==
Qt
.
Key_Left
and
self
.
selectedShape
s
:
self
.
moveOnePixel
(
'Left'
)
elif
key
==
Qt
.
Key_Right
and
self
.
selectedShape
:
elif
key
==
Qt
.
Key_Right
and
self
.
selectedShape
s
:
self
.
moveOnePixel
(
'Right'
)
elif
key
==
Qt
.
Key_Up
and
self
.
selectedShape
:
elif
key
==
Qt
.
Key_Up
and
self
.
selectedShape
s
:
self
.
moveOnePixel
(
'Up'
)
elif
key
==
Qt
.
Key_Down
and
self
.
selectedShape
:
elif
key
==
Qt
.
Key_Down
and
self
.
selectedShape
s
:
self
.
moveOnePixel
(
'Down'
)
def
moveOnePixel
(
self
,
direction
):
# print(self.selectedShape.points)
self
.
selectCount
=
len
(
self
.
selectedShapes
)
self
.
selectCountShape
=
True
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
)
...
...
@@ -744,6 +754,9 @@ class Canvas(QWidget):
self
.
selectedShape
.
points
[
1
]
+=
QPointF
(
0
,
1.0
)
self
.
selectedShape
.
points
[
2
]
+=
QPointF
(
0
,
1.0
)
self
.
selectedShape
.
points
[
3
]
+=
QPointF
(
0
,
1.0
)
shapesBackup
=
[]
shapesBackup
=
copy
.
deepcopy
(
self
.
shapes
)
self
.
shapesBackups
.
append
(
shapesBackup
)
self
.
shapeMoved
.
emit
()
self
.
repaint
()
...
...
@@ -840,6 +853,10 @@ class Canvas(QWidget):
def
restoreShape
(
self
):
if
not
self
.
isShapeRestorable
:
return
if
self
.
selectCountShape
:
if
len
(
self
.
shapesBackups
)
>
2
:
for
i
in
range
(
1
,
self
.
selectCount
):
self
.
shapesBackups
.
pop
()
self
.
shapesBackups
.
pop
()
# latest
shapesBackup
=
self
.
shapesBackups
.
pop
()
self
.
shapes
=
shapesBackup
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment