Files
AiDA_Python/app/service/design_batch/pipeline/__init__.py
2024-12-11 11:06:20 +08:00

23 lines
553 B
Python

from .back_perspective import BackPerspective
from .color import Color
from .contour_detection import ContourDetection
from .keypoint import KeyPoint
from .keypoint import KeyPoint
from .loading import LoadImage, LoadBodyImage
from .print_painting import PrintPainting
from .scale import Scaling
from .segmentation import Segmentation
from .split import Split
__all__ = [
'LoadBodyImage', 'LoadImage',
'KeyPoint',
'ContourDetection',
'Segmentation',
'BackPerspective',
'Color',
'PrintPainting',
'Scaling',
'Split'
]