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
f68f7df7
Commit
f68f7df7
authored
Jul 22, 2021
by
SLLH
Browse files
Update move box
parent
6887f457
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
34 deletions
+42
-34
PPOCRLabel/PPOCRLabel.py
PPOCRLabel/PPOCRLabel.py
+10
-4
PPOCRLabel/libs/canvas.py
PPOCRLabel/libs/canvas.py
+32
-30
No files found.
PPOCRLabel/PPOCRLabel.py
View file @
f68f7df7
...
@@ -885,7 +885,13 @@ class MainWindow(QMainWindow, WindowMixin):
...
@@ -885,7 +885,13 @@ class MainWindow(QMainWindow, WindowMixin):
self
.
updateComboBox
()
self
.
updateComboBox
()
def
updateBoxlist
(
self
):
def
updateBoxlist
(
self
):
for
shape
in
self
.
canvas
.
selectedShapes
+
[
self
.
canvas
.
hShape
]:
if
self
.
canvas
.
hShape
!=
None
:
for
shape
in
self
.
canvas
.
selectedShapes
+
[
self
.
canvas
.
hShape
]:
item
=
self
.
shapesToItemsbox
[
shape
]
# listitem
text
=
[(
int
(
p
.
x
()),
int
(
p
.
y
()))
for
p
in
shape
.
points
]
item
.
setText
(
str
(
text
))
else
:
for
shape
in
self
.
canvas
.
selectedShapes
:
item
=
self
.
shapesToItemsbox
[
shape
]
# listitem
item
=
self
.
shapesToItemsbox
[
shape
]
# listitem
text
=
[(
int
(
p
.
x
()),
int
(
p
.
y
()))
for
p
in
shape
.
points
]
text
=
[(
int
(
p
.
x
()),
int
(
p
.
y
()))
for
p
in
shape
.
points
]
item
.
setText
(
str
(
text
))
item
.
setText
(
str
(
text
))
...
...
PPOCRLabel/libs/canvas.py
View file @
f68f7df7
...
@@ -709,17 +709,19 @@ class Canvas(QWidget):
...
@@ -709,17 +709,19 @@ class Canvas(QWidget):
self
.
update
()
self
.
update
()
elif
key
==
Qt
.
Key_Return
and
self
.
canCloseShape
():
elif
key
==
Qt
.
Key_Return
and
self
.
canCloseShape
():
self
.
finalise
()
self
.
finalise
()
elif
key
==
Qt
.
Key_Left
and
self
.
selectedShape
:
elif
key
==
Qt
.
Key_Left
and
self
.
selectedShape
s
:
self
.
moveOnePixel
(
'Left'
)
self
.
moveOnePixel
(
'Left'
)
elif
key
==
Qt
.
Key_Right
and
self
.
selectedShape
:
elif
key
==
Qt
.
Key_Right
and
self
.
selectedShape
s
:
self
.
moveOnePixel
(
'Right'
)
self
.
moveOnePixel
(
'Right'
)
elif
key
==
Qt
.
Key_Up
and
self
.
selectedShape
:
elif
key
==
Qt
.
Key_Up
and
self
.
selectedShape
s
:
self
.
moveOnePixel
(
'Up'
)
self
.
moveOnePixel
(
'Up'
)
elif
key
==
Qt
.
Key_Down
and
self
.
selectedShape
:
elif
key
==
Qt
.
Key_Down
and
self
.
selectedShape
s
:
self
.
moveOnePixel
(
'Down'
)
self
.
moveOnePixel
(
'Down'
)
def
moveOnePixel
(
self
,
direction
):
def
moveOnePixel
(
self
,
direction
):
# print(self.selectedShape.points)
# print(self.selectedShape.points)
for
i
in
range
(
len
(
self
.
selectedShapes
)):
self
.
selectedShape
=
self
.
selectedShapes
[
i
]
if
direction
==
'Left'
and
not
self
.
moveOutOfBound
(
QPointF
(
-
1.0
,
0
)):
if
direction
==
'Left'
and
not
self
.
moveOutOfBound
(
QPointF
(
-
1.0
,
0
)):
# print("move Left one pixel")
# print("move Left one pixel")
self
.
selectedShape
.
points
[
0
]
+=
QPointF
(
-
1.0
,
0
)
self
.
selectedShape
.
points
[
0
]
+=
QPointF
(
-
1.0
,
0
)
...
...
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