From e30ede517dd93df847afa3c9e74d6f8c15e59b8c 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/service/design_pre_processing/service.py b/app/service/design_pre_processing/service.py index 42cfd6b..a5b3a40 100644 --- a/app/service/design_pre_processing/service.py +++ b/app/service/design_pre_processing/service.py @@ -28,10 +28,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) + # 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)