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
d6a724fb
Commit
d6a724fb
authored
6 years ago
by
Kai Chen
Browse files
Options
Downloads
Patches
Plain Diff
update inference api
parent
2507eb6f
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/apis/__init__.py
+2
-2
2 additions, 2 deletions
mmdet/apis/__init__.py
mmdet/apis/inference.py
+19
-8
19 additions, 8 deletions
mmdet/apis/inference.py
with
21 additions
and
10 deletions
mmdet/apis/__init__.py
+
2
−
2
View file @
d6a724fb
from
.env
import
init_dist
,
get_root_logger
,
set_random_seed
from
.env
import
init_dist
,
get_root_logger
,
set_random_seed
from
.train
import
train_detector
from
.train
import
train_detector
from
.inference
import
inference_detector
from
.inference
import
inference_detector
,
show_result
__all__
=
[
__all__
=
[
'
init_dist
'
,
'
get_root_logger
'
,
'
set_random_seed
'
,
'
train_detector
'
,
'
init_dist
'
,
'
get_root_logger
'
,
'
set_random_seed
'
,
'
train_detector
'
,
'
inference_detector
'
'
inference_detector
'
,
'
show_result
'
]
]
This diff is collapsed.
Click to expand it.
mmdet/apis/inference.py
+
19
−
8
View file @
d6a724fb
...
@@ -23,19 +23,29 @@ def _prepare_data(img, img_transform, cfg, device):
...
@@ -23,19 +23,29 @@ def _prepare_data(img, img_transform, cfg, device):
return
dict
(
img
=
[
img
],
img_meta
=
[
img_meta
])
return
dict
(
img
=
[
img
],
img_meta
=
[
img_meta
])
def
inference_detector
(
model
,
imgs
,
cfg
,
device
=
'
cuda:0
'
):
def
_inference_single
(
model
,
img
,
img_transform
,
cfg
,
device
):
img
=
mmcv
.
imread
(
img
)
data
=
_prepare_data
(
img
,
img_transform
,
cfg
,
device
)
with
torch
.
no_grad
():
result
=
model
(
return_loss
=
False
,
rescale
=
True
,
**
data
)
return
result
def
_inference_generator
(
model
,
imgs
,
img_transform
,
cfg
,
device
):
for
img
in
imgs
:
yield
_inference_single
(
model
,
img
,
img_transform
,
cfg
,
device
)
imgs
=
imgs
if
isinstance
(
imgs
,
list
)
else
[
imgs
]
def
inference_detector
(
model
,
imgs
,
cfg
,
device
=
'
cuda:0
'
):
img_transform
=
ImageTransform
(
img_transform
=
ImageTransform
(
size_divisor
=
cfg
.
data
.
test
.
size_divisor
,
**
cfg
.
img_norm_cfg
)
size_divisor
=
cfg
.
data
.
test
.
size_divisor
,
**
cfg
.
img_norm_cfg
)
model
=
model
.
to
(
device
)
model
=
model
.
to
(
device
)
model
.
eval
()
model
.
eval
()
for
img
in
imgs
:
img
=
mmcv
.
imread
(
img
)
if
not
isinstance
(
imgs
,
list
):
data
=
_prepare_data
(
img
,
img_transform
,
cfg
,
device
)
return
_inference_single
(
model
,
imgs
,
img_transform
,
cfg
,
device
)
with
torch
.
no_grad
():
else
:
result
=
model
(
return_loss
=
False
,
rescale
=
True
,
**
data
)
return
_inference_generator
(
model
,
imgs
,
img_transform
,
cfg
,
device
)
yield
result
def
show_result
(
img
,
result
,
dataset
=
'
coco
'
,
score_thr
=
0.3
):
def
show_result
(
img
,
result
,
dataset
=
'
coco
'
,
score_thr
=
0.3
):
...
@@ -46,6 +56,7 @@ def show_result(img, result, dataset='coco', score_thr=0.3):
...
@@ -46,6 +56,7 @@ def show_result(img, result, dataset='coco', score_thr=0.3):
]
]
labels
=
np
.
concatenate
(
labels
)
labels
=
np
.
concatenate
(
labels
)
bboxes
=
np
.
vstack
(
result
)
bboxes
=
np
.
vstack
(
result
)
img
=
mmcv
.
imread
(
img
)
mmcv
.
imshow_det_bboxes
(
mmcv
.
imshow_det_bboxes
(
img
.
copy
(),
img
.
copy
(),
bboxes
,
bboxes
,
...
...
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