import gradio as gr from rembg import remove # 배경을 제거하는 함수를 정의합니다. def remove_background(image): output_image = remove(image) return output_image # Gradio 인터페이스를 생성합니다. with gr.Blocks() as demo: with gr.Row(): # 사용자가 이미지를 업로드할 수 있는 컴포넌트를 추가합니다. image_input = gr.Image(type="pil", tool="editor") # 배경이 제거된 이미지를 보여주는 컴포넌트를 추가합니다. image_output = gr.Image(type="pil") # 사용자가 이미지를 업로드하면 `remove_background` 함수가 호출되어 결과를 보여줍니다. image_input.change(fn=remove_background, inputs=image_input, outputs=image_output) # 앱을 실행합니다. if __name__ == "__main__": demo.launch()