Files
AiDA_Python/app/service/design_batch/pipeline/__init__.py
zhouchengrong 84fe2663f4 Revert "design design batch"
This reverts commit e6f0ee7f
2024-12-11 13:51:22 +08:00

21 lines
484 B
Python

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',
'Color',
'PrintPainting',
'Scaling',
'Split'
]