Cathy0908 5b487e4977
add easycv plugin to modelscope (#303)
* add plugin for modelscope
2023-05-09 11:20:04 +08:00

14 lines
636 B
Python

from .detection_pipeline import EasyCVDetectionPipeline
from .face_2d_keypoints_pipeline import Face2DKeypointsPipeline
from .hand_2d_keypoints_pipeline import Hand2DKeypointsPipeline
from .human_wholebody_keypoint_pipeline import HumanWholebodyKeypointsPipeline
from .image_panoptic_segmentation_pipeline import \
ImagePanopticSegmentationEasyCVPipeline
from .segmentation_pipeline import EasyCVSegmentationPipeline
__all__ = [
'EasyCVDetectionPipeline', 'EasyCVSegmentationPipeline',
'Face2DKeypointsPipeline', 'HumanWholebodyKeypointsPipeline',
'Hand2DKeypointsPipeline', 'ImagePanopticSegmentationEasyCVPipeline'
]