From 49e31f43c5bdf6f688035c46064ccf30df971dfc Mon Sep 17 00:00:00 2001 From: zhouchengrong Date: Mon, 26 Aug 2024 13:09:16 +0800 Subject: [PATCH] =?UTF-8?q?feat=20=20=20=E5=8F=96=E6=B6=88=E8=B6=85?= =?UTF-8?q?=E5=88=86=E6=89=80=E6=9C=89=E5=BA=94=E7=94=A8=E6=9C=8D=E5=8A=A1?= =?UTF-8?q?=20fix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/service/design_pre_processing/service.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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)