Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
seminar-breakout
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Shashank Suhas
seminar-breakout
Commits
a0bd4d8b
You need to sign in or sign up before continuing.
Commit
a0bd4d8b
authored
Aug 15, 2017
by
Yuxin Wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
some fix in viz
parent
e99ee4ac
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
11 deletions
+13
-11
tensorpack/utils/viz.py
tensorpack/utils/viz.py
+13
-11
No files found.
tensorpack/utils/viz.py
View file @
a0bd4d8b
...
@@ -353,12 +353,13 @@ def intensity_to_rgb(intensity, cmap='cubehelix', normalize=False):
...
@@ -353,12 +353,13 @@ def intensity_to_rgb(intensity, cmap='cubehelix', normalize=False):
return
intensity
.
astype
(
'float32'
)
*
255.0
return
intensity
.
astype
(
'float32'
)
*
255.0
def
draw_boxes
(
im
,
boxes
,
labels
=
None
):
def
draw_boxes
(
im
,
boxes
,
labels
=
None
,
color
=
None
):
"""
"""
Args:
Args:
im (np.ndarray): will not be modified
im (np.ndarray):
a BGR image.
will not be modified
boxes (np.ndarray or list[BoxBase]):
boxes (np.ndarray or list[BoxBase]):
labels: (list[str] or None)
labels: (list[str] or None)
color: a 3-tuple (in range [0, 255]). By default will choose automatically.
Returns:
Returns:
np.ndarray
np.ndarray
...
@@ -379,8 +380,8 @@ def draw_boxes(im, boxes, labels=None):
...
@@ -379,8 +380,8 @@ def draw_boxes(im, boxes, labels=None):
sorted_inds
=
np
.
argsort
(
-
areas
)
sorted_inds
=
np
.
argsort
(
-
areas
)
im
=
im
.
copy
()
im
=
im
.
copy
()
COLOR
=
(
218
,
218
,
218
)
COLOR
=
(
218
,
218
,
218
)
if
color
is
None
else
color
COLOR_DIFF_WEIGHT
=
np
.
asarray
((
2
,
4
,
3
),
dtype
=
'int32'
)
# https://www.wikiwand.com/en/Color_difference
COLOR_DIFF_WEIGHT
=
np
.
asarray
((
3
,
4
,
2
),
dtype
=
'int32'
)
# https://www.wikiwand.com/en/Color_difference
COLOR_CANDIDATES
=
PALETTE_RGB
[[
0
,
1
,
2
,
3
,
18
,
113
],
:]
COLOR_CANDIDATES
=
PALETTE_RGB
[[
0
,
1
,
2
,
3
,
18
,
113
],
:]
if
im
.
ndim
==
2
or
(
im
.
ndim
==
3
and
im
.
shape
[
2
]
==
1
):
if
im
.
ndim
==
2
or
(
im
.
ndim
==
3
and
im
.
shape
[
2
]
==
1
):
im
=
cv2
.
cvtColor
(
im
,
cv2
.
COLOR_GRAY2BGR
)
im
=
cv2
.
cvtColor
(
im
,
cv2
.
COLOR_GRAY2BGR
)
...
@@ -401,16 +402,17 @@ def draw_boxes(im, boxes, labels=None):
...
@@ -401,16 +402,17 @@ def draw_boxes(im, boxes, labels=None):
textbox
=
IntBox
(
int
(
top_left
[
0
]),
int
(
top_left
[
1
]),
textbox
=
IntBox
(
int
(
top_left
[
0
]),
int
(
top_left
[
1
]),
int
(
top_left
[
0
]
+
linew
),
int
(
top_left
[
1
]
+
lineh
))
int
(
top_left
[
0
]
+
linew
),
int
(
top_left
[
1
]
+
lineh
))
textbox
.
clip_by_shape
(
im
.
shape
[:
2
])
textbox
.
clip_by_shape
(
im
.
shape
[:
2
])
# find the best color
if
color
is
None
:
mean_color
=
textbox
.
roi
(
im
)
.
mean
(
axis
=
(
0
,
1
))
# find the best color
best_color_ind
=
(
np
.
square
(
COLOR_CANDIDATES
-
mean_color
)
*
mean_color
=
textbox
.
roi
(
im
)
.
mean
(
axis
=
(
0
,
1
))
COLOR_DIFF_WEIGHT
)
.
sum
(
axis
=
1
)
.
argmax
()
best_color_ind
=
(
np
.
square
(
COLOR_CANDIDATES
-
mean_color
)
*
best_color
=
COLOR_CANDIDATES
[
best_color_ind
]
COLOR_DIFF_WEIGHT
)
.
sum
(
axis
=
1
)
.
argmax
()
best_color
=
COLOR_CANDIDATES
[
best_color_ind
]
.
tolist
()
cv2
.
putText
(
im
,
label
,
(
textbox
.
x1
,
textbox
.
y2
),
cv2
.
putText
(
im
,
label
,
(
textbox
.
x1
,
textbox
.
y2
),
FONT
,
FONT_SCALE
,
color
=
best_color
.
tolist
()
,
lineType
=
cv2
.
LINE_AA
)
FONT
,
FONT_SCALE
,
color
=
best_color
,
lineType
=
cv2
.
LINE_AA
)
cv2
.
rectangle
(
im
,
(
box
[
0
],
box
[
1
]),
(
box
[
2
],
box
[
3
]),
cv2
.
rectangle
(
im
,
(
box
[
0
],
box
[
1
]),
(
box
[
2
],
box
[
3
]),
color
=
best_color
.
tolist
()
,
thickness
=
1
)
color
=
best_color
,
thickness
=
1
)
return
im
return
im
...
...
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