Spaces:
Runtime error
Runtime error
File size: 265 Bytes
cc0dd3c |
1 2 3 4 5 6 7 8 9 10 |
# Copyright (c) OpenMMLab. All rights reserved.
from mmengine.model import ImgDataPreprocessor
from mmpose.registry import MODELS
@MODELS.register_module()
class PoseDataPreprocessor(ImgDataPreprocessor):
"""Image pre-processor for pose estimation tasks."""
|