jpjp9292 commited on
Commit
49fbc86
·
verified ·
1 Parent(s): 97e413d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -18,7 +18,7 @@ def remove_background(input_image):
18
 
19
  # 배경 제거 (파란색 배경으로 설정)
20
  output_img = remove(input_img)
21
- background = Image.new("RGBA", output_img.size, (0, 0, 255, 255)) # 파란색 배경
22
  output_img = Image.alpha_composite(background, output_img)
23
 
24
  logging.info("Background removed successfully.")
@@ -45,15 +45,15 @@ for img_path in example_images:
45
  with gr.Blocks(css="""
46
  #btn-remove {
47
  background-color: #4CAF50; /* 초록색 */
48
- color: white;
49
  }
50
  #btn-reset {
51
  background-color: #FF9800; /* 주황색으로 변경 */
52
- color: white;
53
  }
54
  """) as demo:
55
  gr.Markdown("# 이미지 배경 제거기")
56
- gr.Markdown("이미지를 업로드하면 배경이 자동으로 제거되고 파란색 배경으로 대체됩니다.")
57
 
58
  with gr.Row():
59
  input_image = gr.Image(
 
18
 
19
  # 배경 제거 (파란색 배경으로 설정)
20
  output_img = remove(input_img)
21
+ background = Image.new("RGBA", output_img.size, (255, 255, 255, 1)) # 흰색색 배경
22
  output_img = Image.alpha_composite(background, output_img)
23
 
24
  logging.info("Background removed successfully.")
 
45
  with gr.Blocks(css="""
46
  #btn-remove {
47
  background-color: #4CAF50; /* 초록색 */
48
+ color: black;
49
  }
50
  #btn-reset {
51
  background-color: #FF9800; /* 주황색으로 변경 */
52
+ color: black;
53
  }
54
  """) as demo:
55
  gr.Markdown("# 이미지 배경 제거기")
56
+ gr.Markdown("이미지를 업로드하면 배경이 자동으로 제거되고 흰색 배경으로 대체됩니다.")
57
 
58
  with gr.Row():
59
  input_image = gr.Image(