Files
AiDA_Python/app/service/design_batch/pipeline/__init__.py
zchengrong 88c9d6ef93 feat(新功能): design batch 代码 更新
fix(修复bug):
docs(文档变更):
refactor(重构):
test(增加测试):
2025-04-17 11:23:40 +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'
]