File size: 808 Bytes
18faf97 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# ----------------------------------------------------------------------
# IMPORTS
# ----------------------------------------------------------------------
from src.processing.image_download.image_download import image_download
from src.processing.remove_background.remove_background import remove_background
from src.processing.bounding_box.bounding_box import bounding_box
from src.processing.cropping_padding.cropping_padding import cropping_padding
from src.processing.return_images.return_images import return_images
# ----------------------------------------------------------------------
# PIPELINE STEPS
# ----------------------------------------------------------------------
PIPELINE_STEPS = [
image_download,
remove_background,
bounding_box,
cropping_padding,
return_images
]
|