Skip to content

Commit

Permalink
fix: scaling 드랍
Browse files Browse the repository at this point in the history
이미지 배열 형식 문제 해결
  • Loading branch information
semnisem committed Aug 20, 2024
1 parent a96c591 commit 9390043
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/ColorRemover.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def process(self, img_bytes, extension):
img = cv2.imdecode(buffer, cv2.IMREAD_UNCHANGED)

image_rgb = self.remove_alpha(img)
image_rgb = self.scaling(image_rgb) # perspective transforming
# image_rgb = self.scaling(image_rgb) # perspective transforming

self.masking(image_rgb) # masking
image_inpainted = self.inpainting(image_rgb) # inpainting
Expand Down

0 comments on commit 9390043

Please sign in to comment.