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
0b34ad5b
Unverified
Commit
0b34ad5b
authored
Jun 22, 2022
by
Double_V
Committed by
GitHub
Jun 22, 2022
Browse files
Merge pull request #6667 from LDOUBLEV/2.5
fix
parents
03e768b2
62a9e8df
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
32 deletions
+18
-32
ppocr/data/imaug/label_ops.py
ppocr/data/imaug/label_ops.py
+9
-16
tools/infer/predict_det.py
tools/infer/predict_det.py
+9
-16
No files found.
ppocr/data/imaug/label_ops.py
View file @
0b34ad5b
...
...
@@ -70,22 +70,15 @@ class DetLabelEncode(object):
return
data
def
order_points_clockwise
(
self
,
pts
):
"""
refer to :https://github.com/PyImageSearch/imutils/blob/9f740a53bcc2ed7eba2558afed8b4c17fd8a1d4c/imutils/perspective.py#L9
"""
# sort the points based on their x-coordinates
xSorted
=
pts
[
np
.
argsort
(
pts
[:,
0
]),
:]
leftMost
=
xSorted
[:
2
,
:]
rightMost
=
xSorted
[
2
:,
:]
leftMost
=
leftMost
[
np
.
argsort
(
leftMost
[:,
1
]),
:]
(
tl
,
bl
)
=
leftMost
D
=
dist
.
cdist
(
tl
[
np
.
newaxis
],
rightMost
,
"euclidean"
)[
0
]
(
br
,
tr
)
=
rightMost
[
np
.
argsort
(
D
)[::
-
1
],
:]
return
np
.
array
([
tl
,
tr
,
br
,
bl
],
dtype
=
"float32"
)
rect
=
np
.
zeros
((
4
,
2
),
dtype
=
"float32"
)
s
=
pts
.
sum
(
axis
=
1
)
rect
[
0
]
=
pts
[
np
.
argmin
(
s
)]
rect
[
2
]
=
pts
[
np
.
argmax
(
s
)]
tmp
=
np
.
delete
(
pts
,
(
np
.
argmin
(
s
),
np
.
argmax
(
s
)),
axis
=
0
)
diff
=
np
.
diff
(
np
.
array
(
tmp
),
axis
=
1
)
rect
[
1
]
=
tmp
[
np
.
argmin
(
diff
)]
rect
[
3
]
=
tmp
[
np
.
argmax
(
diff
)]
return
rect
def
expand_points_num
(
self
,
boxes
):
max_points_num
=
0
...
...
tools/infer/predict_det.py
View file @
0b34ad5b
...
...
@@ -151,22 +151,15 @@ class TextDetector(object):
logger
=
logger
)
def
order_points_clockwise
(
self
,
pts
):
"""
refer to :https://github.com/PyImageSearch/imutils/blob/9f740a53bcc2ed7eba2558afed8b4c17fd8a1d4c/imutils/perspective.py#L9
"""
# sort the points based on their x-coordinates
xSorted
=
pts
[
np
.
argsort
(
pts
[:,
0
]),
:]
leftMost
=
xSorted
[:
2
,
:]
rightMost
=
xSorted
[
2
:,
:]
leftMost
=
leftMost
[
np
.
argsort
(
leftMost
[:,
1
]),
:]
(
tl
,
bl
)
=
leftMost
D
=
dist
.
cdist
(
tl
[
np
.
newaxis
],
rightMost
,
"euclidean"
)[
0
]
(
br
,
tr
)
=
rightMost
[
np
.
argsort
(
D
)[::
-
1
],
:]
return
np
.
array
([
tl
,
tr
,
br
,
bl
],
dtype
=
"float32"
)
rect
=
np
.
zeros
((
4
,
2
),
dtype
=
"float32"
)
s
=
pts
.
sum
(
axis
=
1
)
rect
[
0
]
=
pts
[
np
.
argmin
(
s
)]
rect
[
2
]
=
pts
[
np
.
argmax
(
s
)]
tmp
=
np
.
delete
(
pts
,
(
np
.
argmin
(
s
),
np
.
argmax
(
s
)),
axis
=
0
)
diff
=
np
.
diff
(
np
.
array
(
tmp
),
axis
=
1
)
rect
[
1
]
=
tmp
[
np
.
argmin
(
diff
)]
rect
[
3
]
=
tmp
[
np
.
argmax
(
diff
)]
return
rect
def
clip_det_res
(
self
,
points
,
img_height
,
img_width
):
for
pno
in
range
(
points
.
shape
[
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