diff --git a/app/service/design_pre_processing/service.py b/app/service/design_pre_processing/service.py index f69c3ee..dd2a543 100644 --- a/app/service/design_pre_processing/service.py +++ b/app/service/design_pre_processing/service.py @@ -25,10 +25,10 @@ class DesignPreprocessing: bounding_box_sketches_list = self.bounding_box(sketches_list) logging.info("bounding box image success") - super_resolution_list = self.super_resolution(bounding_box_sketches_list) - logging.info("super_resolution_list image success") + # super_resolution_list = self.super_resolution(bounding_box_sketches_list) + # logging.info("super_resolution_list image success") - infer_sketches_list = self.infer_image(super_resolution_list) + infer_sketches_list = self.infer_image(bounding_box_sketches_list) logging.info("infer image success") result = self.composing_image(infer_sketches_list)