mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
15 lines
388 B
Python
15 lines
388 B
Python
_base_ = ['./pose-detection_static.py', '../_base_/backends/sdk.py']
|
|||
|
|||
codebase_config = dict(model_type='sdk')
|
|||
|
|||
backend_config = dict(pipeline=[
|
|||
dict(type='LoadImageFromFile', channel_order='bgr'),
|
|||
dict(
|
|||
type='Collect',
|
|||
keys=['img'],
|
|||
meta_keys=[
|
|||
'image_file', 'center', 'scale', 'rotation', 'bbox_score',
|
|||
'flip_pairs'
|
|||
])
|
|||
])
|