Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
food-round2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Joel Joseph
food-round2
Commits
830effcd
Commit
830effcd
authored
6 years ago
by
Kai Chen
Browse files
Options
Downloads
Patches
Plain Diff
add default result visualization for base detector
parent
65c3ebca
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
mmdet/core/eval/class_names.py
+1
-1
1 addition, 1 deletion
mmdet/core/eval/class_names.py
mmdet/models/detectors/base.py
+39
-0
39 additions, 0 deletions
mmdet/models/detectors/base.py
with
40 additions
and
1 deletion
mmdet/core/eval/class_names.py
+
1
−
1
View file @
830effcd
...
...
@@ -95,7 +95,7 @@ def get_classes(dataset):
if
mmcv
.
is_str
(
dataset
):
if
dataset
in
alias2name
:
labels
=
eval
(
alias2name
[
dataset
]
+
'
_la
bel
s()
'
)
labels
=
eval
(
alias2name
[
dataset
]
+
'
_
c
la
sse
s()
'
)
else
:
raise
ValueError
(
'
Unrecognized dataset: {}
'
.
format
(
dataset
))
else
:
...
...
This diff is collapsed.
Click to expand it.
mmdet/models/detectors/base.py
+
39
−
0
View file @
830effcd
import
logging
from
abc
import
ABCMeta
,
abstractmethod
import
mmcv
import
numpy
as
np
import
torch
import
torch.nn
as
nn
from
mmdet.core
import
tensor2imgs
,
get_classes
class
BaseDetector
(
nn
.
Module
):
"""
Base class for detectors
"""
...
...
@@ -66,3 +70,38 @@ class BaseDetector(nn.Module):
return
self
.
forward_train
(
img
,
img_meta
,
**
kwargs
)
else
:
return
self
.
forward_test
(
img
,
img_meta
,
**
kwargs
)
def
show_result
(
self
,
data
,
result
,
img_norm_cfg
,
dataset
=
'
coco
'
,
score_thr
=
0.3
):
img_tensor
=
data
[
'
img
'
][
0
]
img_metas
=
data
[
'
img_meta
'
][
0
].
data
[
0
]
imgs
=
tensor2imgs
(
img_tensor
,
**
img_norm_cfg
)
assert
len
(
imgs
)
==
len
(
img_metas
)
if
isinstance
(
dataset
,
str
):
class_names
=
get_classes
(
dataset
)
elif
isinstance
(
dataset
,
list
):
class_names
=
dataset
else
:
raise
TypeError
(
'
dataset must be a valid dataset name or a list
'
'
of class names, not {}
'
.
format
(
type
(
dataset
)))
for
img
,
img_meta
in
zip
(
imgs
,
img_metas
):
h
,
w
,
_
=
img_meta
[
'
img_shape
'
]
img_show
=
img
[:
h
,
:
w
,
:]
labels
=
[
np
.
full
(
bbox
.
shape
[
0
],
i
,
dtype
=
np
.
int32
)
for
i
,
bbox
in
enumerate
(
result
)
]
labels
=
np
.
concatenate
(
labels
)
bboxes
=
np
.
vstack
(
result
)
mmcv
.
imshow_det_bboxes
(
img_show
,
bboxes
,
labels
,
class_names
=
class_names
,
score_thr
=
score_thr
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment