design batch 代码整理
This commit is contained in:
20
app/service/design_batch/pipeline/__init__.py
Normal file
20
app/service/design_batch/pipeline/__init__.py
Normal file
@@ -0,0 +1,20 @@
|
||||
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'
|
||||
]
|
||||
Reference in New Issue
Block a user